refactor: use an enum to select move_to_char direction instead of a bool
This commit is contained in:
parent
0bd34279a8
commit
d7e162892a
2 changed files with 5 additions and 5 deletions
|
@ -30,8 +30,8 @@
|
|||
["ctrl+l", "scroll_view_center_cycle"],
|
||||
["ctrl+n", "goto_next_match"],
|
||||
["ctrl+p", "goto_prev_match"],
|
||||
["ctrl+b", "move_to_char", false],
|
||||
["ctrl+t", "move_to_char", true],
|
||||
["ctrl+b", "move_to_char", "left"],
|
||||
["ctrl+t", "move_to_char", "right"],
|
||||
["ctrl+x", "cut"],
|
||||
["ctrl+c", "copy"],
|
||||
["ctrl+v", "system_paste"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue