diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 0147f58e..a5a615f3 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -608,6 +608,7 @@ impl Default for Keymaps { "f" => goto_prev_function, "c" => goto_prev_class, "p" => goto_prev_parameter, + "o" => goto_prev_comment, "space" => add_newline_above, }, "]" => { "Right bracket" @@ -616,6 +617,7 @@ impl Default for Keymaps { "f" => goto_next_function, "c" => goto_next_class, "p" => goto_next_parameter, + "o" => goto_next_comment, "space" => add_newline_below, }, |