diff options
author | Ole Krüger | 2023-01-31 10:38:53 +0000 |
---|---|---|
committer | GitHub | 2023-01-31 10:38:53 +0000 |
commit | 4eca4b3079bf53de874959270d0b3471d320debc (patch) | |
tree | 685da9a2ef16df7b0c135a636f2324e5a2248802 /helix-term/src/keymap | |
parent | c9b583ea9b59aa78c12e3831ed9c73f83d1d35d8 (diff) |
Support goto-declaration LSP command (#5646)
Diffstat (limited to 'helix-term/src/keymap')
-rw-r--r-- | helix-term/src/keymap/default.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs index ef93dee0..d48e6935 100644 --- a/helix-term/src/keymap/default.rs +++ b/helix-term/src/keymap/default.rs @@ -44,6 +44,7 @@ pub fn default() -> HashMap<Mode, Keymap> { "l" => goto_line_end, "s" => goto_first_nonwhitespace, "d" => goto_definition, + "D" => goto_declaration, "y" => goto_type_definition, "r" => goto_reference, "i" => goto_implementation, |