aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorKangwook Lee (이강욱)2021-09-04 13:30:32 +0000
committerGitHub2021-09-04 13:30:32 +0000
commit07fe4a6a40b4a3e3dd45a8e9f7e7c20a2124bd73 (patch)
tree9c933bf0f4b6d8820e3452304f65794ad899bf83 /helix-term/src/keymap.rs
parent7e1123680f474bff5113db189f63ca7f948781a5 (diff)
Add commands that extends to long words (#706)
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 71ac01a9..a936dccc 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -527,6 +527,9 @@ impl Default for Keymaps {
"w" => extend_next_word_start,
"b" => extend_prev_word_start,
"e" => extend_next_word_end,
+ "W" => extend_next_long_word_start,
+ "B" => extend_prev_long_word_start,
+ "E" => extend_next_long_word_end,
"t" => extend_till_char,
"f" => extend_next_char,