aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorCossonLeo2021-11-08 15:17:54 +0000
committerGitHub2021-11-08 15:17:54 +0000
commit29e684941389f949491efe4d9807a0edd1facee3 (patch)
tree118f252ae10aff36a91361c16aef4b33c6aac2b2 /helix-term/src/keymap.rs
parentbf4c70e02739601b7657c69a3876f9d1090a42c0 (diff)
Add LSP rename_symbol (space-r) (#1011)
improve apply_workspace_edit
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 ce50f0ab..d497401f 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -584,6 +584,7 @@ impl Default for Keymaps {
"R" => replace_selections_with_clipboard,
"/" => global_search,
"k" => hover,
+ "r" => rename_symbol,
},
"z" => { "View"
"z" | "c" => align_view_center,