diff options
author | Ivan Tham | 2021-08-26 15:20:37 +0000 |
---|---|---|
committer | GitHub | 2021-08-26 15:20:37 +0000 |
commit | 4bafda3995be01b4624469a4ba305e3d019e3f59 (patch) | |
tree | a32a60e113a4c7b221dd5fe7de5826c17a1a7676 /helix-term/src/commands.rs | |
parent | 68bf9fdf02a2462c57c86a7318987d385a289184 (diff) |
Change vsp to vs (#647)
Follow up on #639 to match vim behavior
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
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), |