From 4bafda3995be01b4624469a4ba305e3d019e3f59 Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Thu, 26 Aug 2021 23:20:37 +0800 Subject: [PATCH] Change vsp to vs (#647) Follow up on #639 to match vim behavior --- helix-term/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 9a7b6510..d21bbe42 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2175,7 +2175,7 @@ mod cmd { }, TypableCommand { name: "vsplit", - alias: Some("vsp"), + alias: Some("vs"), doc: "Open the file in a vertical split.", fun: vsplit, completer: Some(completers::filename),