aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorWojciech Kępka2021-06-07 18:13:40 +0000
committerBlaž Hrastnik2021-06-08 00:50:14 +0000
commitc65b4dea099abc7512720e8407b53a3742083039 (patch)
tree79aad34860b70731ea23fe11c53b923da98ffc36 /helix-term/src/keymap.rs
parent6fc0e0b5fbe29e1b3ace2d1a0abc5a5b3d8380f8 (diff)
commands: Add replace with yanked as `R`
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 d2fa46c7..0324fd04 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -156,6 +156,7 @@ pub fn default() -> Keymaps {
// and matching set for select mode (extend)
//
key!('r') => commands::replace,
+ key!('R') => commands::replace_with_yanked,
KeyEvent {
code: KeyCode::Home,