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"],