aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorCossonLeo2021-10-24 13:47:10 +0000
committerGitHub2021-10-24 13:47:10 +0000
commit2ed01f2d9c8c98a7e59fef1bb19af56ec897084b (patch)
tree24745466e00640e7f3ecf2eddba6cac2fee39c97 /helix-term/src/keymap.rs
parentcee7ad781e5f6de249d728425a6283a26bb62dc3 (diff)
find motion and textobj motion repeat (#891)
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index f877387c..495fe892 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -395,6 +395,7 @@ impl Default for Keymaps {
"F" => find_prev_char,
"r" => replace,
"R" => replace_with_yanked,
+ "A-." => repeat_last_motion,
"~" => switch_case,
"`" => switch_to_lowercase,