aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-11-06 08:49:18 +0000
committerBlaž Hrastnik2021-11-06 08:49:18 +0000
commit4c1321b3b6b5b2f4e9f33963877a1019ba746e04 (patch)
tree70aaf119cb3bc777a1eae136945e5b6998cd7e8c /helix-term
parentb81a5544248633d84615952ec6130f5104998c18 (diff)
minor: Extend search was decclared twice in the keymap
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/keymap.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index c85a9c3f..ce50f0ab 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -640,9 +640,6 @@ impl Default for Keymaps {
"T" => extend_till_prev_char,
"F" => extend_prev_char,
- "n" => extend_search_next,
- "N" => extend_search_prev,
-
"home" => extend_to_line_start,
"end" => extend_to_line_end,
"esc" => exit_select_mode,