Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/keymap/default.rs')
| -rw-r--r-- | helix-view/src/keymap/default.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/helix-view/src/keymap/default.rs b/helix-view/src/keymap/default.rs index a1037beb..60bc5452 100644 --- a/helix-view/src/keymap/default.rs +++ b/helix-view/src/keymap/default.rs @@ -43,10 +43,10 @@ pub fn default() -> HashMap<Mode, Keymap> { "h" => goto_line_start, "l" => goto_line_end, "s" => goto_first_nonwhitespace, - "d" => goto_definition, - "y" => goto_type_definition, - "r" => goto_reference, - "i" => goto_implementation, + // "d" => goto_definition, + // "y" => goto_type_definition, + // "r" => goto_reference, + // "i" => goto_implementation, "t" => goto_window_top, "c" => goto_window_center, "b" => goto_window_bottom, @@ -198,9 +198,9 @@ pub fn default() -> HashMap<Mode, Keymap> { "f" => file_picker, "F" => file_picker_in_current_directory, "b" => buffer_picker, - "s" => symbol_picker, - "S" => workspace_symbol_picker, - "a" => code_action, + // "s" => symbol_picker, + // "S" => workspace_symbol_picker, + // "a" => code_action, "'" => last_picker, "w" => { "Window" "C-w" | "w" => rotate_view, @@ -225,8 +225,8 @@ pub fn default() -> HashMap<Mode, Keymap> { "P" => paste_clipboard_before, "R" => replace_selections_with_clipboard, "/" => global_search, - "k" => hover, - "r" => rename_symbol, + // "k" => hover, + // "r" => rename_symbol, "?" => command_palette, }, "z" => { "View" |