aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorGygaxis Vainhardt2022-06-16 21:09:30 +0000
committerGitHub2022-06-16 21:09:30 +0000
commitdebd2405d9cb65b08fbb260854c869701ae64178 (patch)
treec4538b86ffc4fee9d84f0fce6b3f30d1e7b5ca19 /helix-term
parent4d604d3b50da482049de46af02febdc04c9f0079 (diff)
views -> buffers in write-all (#2788)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands/typed.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index 0f8884db..ae3e63af 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -1393,21 +1393,21 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
TypableCommand {
name: "write-all",
aliases: &["wa"],
- doc: "Write changes from all views to disk.",
+ doc: "Write changes from all buffers to disk.",
fun: write_all,
completer: None,
},
TypableCommand {
name: "write-quit-all",
aliases: &["wqa", "xa"],
- doc: "Write changes from all views to disk and close all views.",
+ doc: "Write changes from all buffers to disk and close all views.",
fun: write_all_quit,
completer: None,
},
TypableCommand {
name: "write-quit-all!",
aliases: &["wqa!", "xa!"],
- doc: "Write changes from all views to disk and close all views forcefully (ignoring unsaved changes).",
+ doc: "Write changes from all buffers to disk and close all views forcefully (ignoring unsaved changes).",
fun: force_write_all_quit,
completer: None,
},