vanadium: patch helix so I have W command

This commit is contained in:
Primrose 2025-06-18 22:06:31 +02:00
parent 35ab47015b
commit 8bb8c71e48
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,13 @@
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index 2013a9d8..e1673e68 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -2705,7 +2705,7 @@ fn noop(_cx: &mut compositor::Context, _args: Args, _event: PromptEvent) -> anyh
},
TypableCommand {
name: "write",
- aliases: &["w"],
+ aliases: &["w", "W"], // I type too fast
doc: "Write changes to disk. Accepts an optional path (:write some/path.txt)",
fun: write,
completer: CommandCompleter::positional(&[completers::filename]),