Skip to content

Commit

Permalink
Change vsp to vs
Browse files Browse the repository at this point in the history
Follow up on #639 to match vim behavior
  • Loading branch information
pickfire authored Aug 24, 2021
1 parent 490125f commit ec15a8f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit ec15a8f

Please sign in to comment.