aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-02-19 08:46:43 +0000
committerBlaž Hrastnik2021-02-19 08:46:43 +0000
commit7877647cf0812380623b0087fbd7bea0ee9fae20 (patch)
treea386d8b5534310763dbab12b9e21ac893b431f94 /helix-term/src
parent1e1dae1c11bf00b56213995679647ff30b664a17 (diff)
Allow closing individual views.
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/application.rs5
-rw-r--r--helix-term/src/commands.rs5
2 files changed, 6 insertions, 4 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 90391024..c82724a5 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -82,7 +82,7 @@ impl Application {
self.render();
loop {
- if self.editor.should_close {
+ if self.editor.should_close() {
break;
}
@@ -116,9 +116,8 @@ impl Application {
None => panic!(),
};
- if should_redraw {
+ if should_redraw && !self.editor.should_close() {
self.render();
- // calling render twice here fixes it for some reason
}
}
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 8aff8035..e65144f4 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -558,7 +558,10 @@ pub fn command_mode(cx: &mut Context) {
let parts = input.split_ascii_whitespace().collect::<Vec<&str>>();
match *parts.as_slice() {
- ["q"] => editor.should_close = true,
+ ["q"] => {
+ editor.tree.remove(editor.view().id);
+ // editor.should_close = true,
+ }
["o", path] => {
editor.open(path.into(), executor);
}