diff options
author | Blaž Hrastnik | 2020-12-23 07:20:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-23 07:20:49 +0000 |
commit | 56f2193811fca2fa20284442c2042fa271464445 (patch) | |
tree | 1ec99141a70b484f1fbcf0594e5aea61138cd097 /helix-term/src/ui/editor.rs | |
parent | 955cb81687db139422875d02b534d753dac5603f (diff) |
Retrieve completion options on ctrl-x.
Diffstat (limited to 'helix-term/src/ui/editor.rs')
-rw-r--r-- | helix-term/src/ui/editor.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 1bab2eef..25221922 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -263,6 +263,7 @@ impl Component for EditorView { let mut cx = commands::Context { view, executor: cx.executor, + language_servers: cx.language_servers, count: 1, callback: None, }; |