diff options
author | Blaž Hrastnik | 2021-02-12 09:10:05 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-12 09:10:05 +0000 |
commit | 83d48f10ea01673c990296c0a5efb5bc201b4972 (patch) | |
tree | 27acf920836f3ffad0f73758a916890d7cd994de /helix-term/src/keymap.rs | |
parent | 6dba0516f235f65c8b0a7d1e8d02d5d3748274c0 (diff) |
search: Barebones implementation.
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index dbf3459f..932a6431 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -168,6 +168,8 @@ pub fn default() -> Keymaps { vec![alt!(';')] => commands::flip_selections, vec![key!('%')] => commands::select_all, vec![key!('x')] => commands::select_line, + vec![key!('/')] => commands::search, + vec![key!('n')] => commands::search_next, vec![key!('u')] => commands::undo, vec![shift!('U')] => commands::redo, vec![key!('y')] => commands::yank, |