diff options
author | CossonLeo | 2021-10-18 06:14:50 +0000 |
---|---|---|
committer | GitHub | 2021-10-18 06:14:50 +0000 |
commit | 9ac0c951615d624041836cdd7afd869391c72fff (patch) | |
tree | ace936ce161eaa56bbf59590a2c0270d03ca5cd8 /helix-term/src/application.rs | |
parent | a03b12530c8231111184dbb35b57bfb1727f4d60 (diff) |
Improve completion trigger (#838)
* improve idle completion trigger
* add completion-trigger-len to book
* rename semantics_completion to language_server_completion and optimize idle completion trigger
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 0e7d0e55..a7281ecf 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -235,7 +235,7 @@ impl Application { } pub fn handle_idle_timeout(&mut self) { - use crate::commands::{completion, Context}; + use crate::commands::{insert::idle_completion, Context}; use helix_view::document::Mode; if doc_mut!(self.editor).mode != Mode::Insert || !self.config.editor.auto_completion { @@ -262,7 +262,7 @@ impl Application { callback: None, on_next_key_callback: None, }; - completion(&mut cx); + idle_completion(&mut cx); self.render(); } |