From 5fbc086ccd82d23eae105f572c50c3b46bb2b9a2 Mon Sep 17 00:00:00 2001 From: mattwparas Date: Wed, 23 Aug 2023 08:54:04 -0700 Subject: [PATCH] add back missing command --- helix-term/src/commands/typed.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 6a19bf2b1..b9f4f90e4 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -2519,6 +2519,13 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ fun: write_all, signature: CommandSignature::none(), }, + TypableCommand { + name: "write-all!", + aliases: &["wa!"], + doc: "Forcefully write changes from all buffers to disk creating necessary subdirectories.", + fun: force_write_all, + signature: CommandSignature::none(), + }, TypableCommand { name: "write-quit-all", aliases: &["wqa", "xa"],