aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-05-07 06:03:47 +0000
committerBlaž Hrastnik2021-05-07 06:15:15 +0000
commit243456a5832051ee97832c07bc66fb8d7a03a56b (patch)
treee3a2fe4c1489885fa926ff16ab8bec0e4b99cd62 /helix-term
parentc0a8b814870335986b595af25a10330bfe077793 (diff)
Disallow quitting on last view if unsaved changes present.
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs29
1 files changed, 27 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index b7e853c4..27bfbe9a 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -664,7 +664,7 @@ pub fn _search_next(cx: &mut Context, extend: bool) {
let query = query.first().unwrap();
let (view, doc) = cx.current();
let contents = doc.text().slice(..).to_string();
- let regex = Regex::new(&query).unwrap();
+ let regex = Regex::new(query).unwrap();
_search(doc, view, &contents, &regex, extend);
}
}
@@ -809,7 +809,7 @@ pub fn append_mode(cx: &mut Context) {
doc.set_selection(view.id, selection);
}
-const COMMAND_LIST: &[&str] = &["write", "open", "quit"];
+const COMMAND_LIST: &[&str] = &["write", "open", "quit", "quit!"];
pub fn command_mode(cx: &mut Context) {
let prompt = Prompt::new(
@@ -856,6 +856,31 @@ pub fn command_mode(cx: &mut Context) {
match *parts.as_slice() {
["q"] | ["quit"] => {
+ // last view and we have unsaved changes
+ if editor.tree.views().count() == 1 {
+ let modified: Vec<_> = editor
+ .documents()
+ .filter(|doc| doc.is_modified())
+ .map(|doc| {
+ doc.relative_path()
+ .and_then(|path| path.to_str())
+ .unwrap_or("[scratch]")
+ })
+ .collect();
+
+ if !modified.is_empty() {
+ let err = format!(
+ "{} unsaved buffer(s) remaining: {:?}",
+ modified.len(),
+ modified
+ );
+ editor.set_error(err);
+ return;
+ }
+ }
+ editor.close(editor.view().id, /* close_buffer */ false);
+ }
+ ["q!"] | ["quit!"] => {
editor.close(editor.view().id, /* close_buffer */ false);
}
["o", path] | ["open", path] => {