aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-16 07:20:43 +0000
committerBlaž Hrastnik2021-03-16 07:27:12 +0000
commit54a7e893b704b268f7d9d8b4692d3722db6a98df (patch)
tree1400fdc10f813725a1648b08236b4ec401f237b4 /helix-term/src
parenteca2a73ad0e829dbd83da8f42a8a2bd5c17bbf75 (diff)
lsp: Wire up didClose notification on editor.close.
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands.rs2
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] => {