diff options
author | Blaž Hrastnik | 2021-03-24 09:17:00 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-24 09:17:00 +0000 |
commit | 9a36d2c2a8c4c7c3932de59d1ec145faf3301f2d (patch) | |
tree | 5a9a98879c6a87c5fdeff7370999a6f70af71299 /helix-term/src/keymap.rs | |
parent | 025d63bc3065529b68945816e9652c779e4be862 (diff) |
wip: Hooks & trigger characters for completion/signature_help.
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 824d469d..aa1f8cce 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -196,7 +196,9 @@ pub fn default() -> Keymaps { key!('[') => commands::expand_selection, key!('/') => commands::search, + // ? for search_reverse key!('n') => commands::search_next, + // N for search_prev key!('*') => commands::search_selection, key!('u') => commands::undo, |