diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 7434d4cd545b5..dbba4ef67f10d 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -287,7 +287,9 @@ impl Command { jump_backward, "Jump backward on jumplist", rotate_view, "Goto next window", hsplit, "Horizontal bottom split", - vsplit, "Vertical right split", + + + lit, "Vertical right split", wclose, "Close window", select_register, "Select register", align_view_middle, "Align view middle", @@ -2175,7 +2177,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),