aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Tham2021-08-26 15:20:37 +0000
committerGitHub2021-08-26 15:20:37 +0000
commit4bafda3995be01b4624469a4ba305e3d019e3f59 (patch)
treea32a60e113a4c7b221dd5fe7de5826c17a1a7676
parent68bf9fdf02a2462c57c86a7318987d385a289184 (diff)
Change vsp to vs (#647)
Follow up on #639 to match vim behavior
-rw-r--r--helix-term/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
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),