fixed minor issue

This commit is contained in:
Emma Tebibyte 2023-04-15 17:38:12 -04:00
parent 2766539622
commit ece0976813
1 changed files with 2 additions and 2 deletions

View File

@ -60,10 +60,10 @@ impl Default for Keybinds {
];
let normalish_keys = [
(Char(':'), command_mode as Action)
(Char(':'), command_mode as Action),
(Char('$'), goto_line_end),
(Char('0'), goto_line_start),
(Char('^'), goto_first_nonwhitespace)
(Char('^'), goto_first_nonwhitespace),
(Char('h'), move_char_left),
(Char('j'), move_line_down),
(Char('k'), move_line_up),