diff options
author | Blaž Hrastnik | 2021-10-10 03:22:11 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-10-10 03:22:11 +0000 |
commit | c7f3a971c0e42d1ecb8b91f075b2300040b656fa (patch) | |
tree | eda1aebd2232f4876cc4d8d4fa2b683a1eff325d | |
parent | f692ede2b7af9ee3c0a83642c0e169ac2db90ca5 (diff) |
Remove resolved TODOs
-rw-r--r-- | helix-term/src/application.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 8019b839..c39a9173 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -253,8 +253,6 @@ impl Application { return; } - // TODO: if completion window was closed with enter (and no selection) we shouldn't retrigger - let mut cx = Context { register: None, editor: &mut self.editor, @@ -264,7 +262,6 @@ impl Application { on_next_key_callback: None, }; completion(&mut cx); - // TODO: scan backwards for trigger and filter the box self.render(); } |