diff options
author | Blaž Hrastnik | 2020-06-07 15:31:11 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-06-07 15:41:37 +0000 |
commit | f8fe273a2e52659f89c82f94fab4b2800518bbea (patch) | |
tree | a88825798d4db9fe3e4125eba3d554672da65d4b /helix-term/src | |
parent | 843c20a5504a110dd0bc726d84062851290f1afe (diff) |
Fix build.
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/keymap.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index b2d6738b..849f7281 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -1,4 +1,4 @@ -use crossterm::event::{KeyEvent as Key, KeyModifiers as Modifiers}; +use crossterm::event::{KeyCode, KeyEvent as Key, KeyModifiers as Modifiers}; use helix_core::commands::{self, Command}; use std::collections::HashMap; @@ -97,20 +97,20 @@ type Keymap = HashMap<Key, Command>; fn default() -> Keymap { hashmap!( Key { - code: "h", + code: KeyCode::Char('h'), modifiers: Modifiers::NONE - } => commands::move_char_left, + } => commands::move_char_left as Command, Key { - code: "j", + code: KeyCode::Char('j'), modifiers: Modifiers::NONE - } => commands::move_line_down, + } => commands::move_line_down as Command, Key { - code: "k", + code: KeyCode::Char('k'), modifiers: Modifiers::NONE - } => commands::move_line_up, + } => commands::move_line_up as Command, Key { - code: "l", + code: KeyCode::Char('l'), modifiers: Modifiers::NONE - } => commands::move_char_right, - ); + } => commands::move_char_right as Command, + ) } |