We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b7a11d commit e6232b6Copy full SHA for e6232b6
src/buffer/maps.rs
@@ -86,6 +86,14 @@ pub fn get_default_visual_maps() -> ActionMap {
86
map.insert("e", buffer_action!(move_next_word_end));
87
map.insert("b", buffer_action!(move_previous_word));
88
89
+ map.insert("<c-y>", buffer_action!(scroll_up));
90
+ map.insert("<c-u>", buffer_action!(scroll_up_half_page));
91
+ map.insert("<c-e>", buffer_action!(scroll_down));
92
+ map.insert("<c-d>", buffer_action!(scroll_down_half_page));
93
+
94
+ map.insert("n", buffer_action!(move_to_next_find));
95
+ map.insert("N", buffer_action!(move_to_previous_find));
96
97
map.insert("o", buffer_action!(reverse_selection));
98
99
map.insert("y", buffer_action!(copy_selection));
0 commit comments