diff options
author | Blaž Hrastnik | 2021-03-16 07:20:43 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-16 07:27:12 +0000 |
commit | 54a7e893b704b268f7d9d8b4692d3722db6a98df (patch) | |
tree | 1400fdc10f813725a1648b08236b4ec401f237b4 /helix-term | |
parent | eca2a73ad0e829dbd83da8f42a8a2bd5c17bbf75 (diff) |
lsp: Wire up didClose notification on editor.close.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index d80662d7..353d79cc 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -691,7 +691,7 @@ pub fn command_mode(cx: &mut Context) { match *parts.as_slice() { ["q"] | ["quit"] => { - editor.tree.remove(editor.view().id); + editor.close(editor.view().id, executor); // editor.should_close = true, } ["o", path] | ["open", path] => { |