diff options
author | Blaž Hrastnik | 2021-03-26 07:02:13 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-26 08:12:45 +0000 |
commit | 2a3910c1d9f2b05fe5bc0610e6a83e6dabe13b71 (patch) | |
tree | 5e2c94eec0c168d14b1478a07110230b3be1c7fe /helix-term/src/ui | |
parent | ad3325db8e6dce3a10b9f8e0319ab9814c7ade1b (diff) |
wip: Async async. Delay response handling with a callback.
Diffstat (limited to 'helix-term/src/ui')
-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 ba9eda42..f55411b8 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -439,6 +439,7 @@ impl Component for EditorView { editor: &mut cx.editor, count: 1, callback: None, + callbacks: cx.callbacks, on_next_key_callback: None, }; |