Skip to content

Commit

Permalink
added <
Browse files Browse the repository at this point in the history
  • Loading branch information
ayax79 committed Oct 11, 2024
1 parent de85800 commit 2667e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edit_mode/vi/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ fn right_bracket_for(c: &char) -> char {

fn is_valid_change_in(c: &char) -> bool {
match *c {
'(' | '[' | '{' | ')' | ']' | '}' | '"' | '\'' | '`' => true,
'(' | '[' | '{' | ')' | ']' | '}' | '"' | '\'' | '`' | '<' => true,
_ => false,
}
}

0 comments on commit 2667e31

Please sign in to comment.