feat(mappings): add horizontal scrolling to normal mode defaults

Co-authored-by: Ahmni Pang-Johnson <ahmnii@amazon.com>
This commit is contained in:
Ahmni Pang-Johnson
2023-12-19 17:58:36 -06:00
committed by GitHub
parent 6213322ab5
commit f336f8cfab

View File

@@ -195,9 +195,13 @@ mappings.default_mappings = config.values.default_mappings
["<C-u>"] = actions.preview_scrolling_up,
["<C-d>"] = actions.preview_scrolling_down,
["<C-f>"] = actions.preview_scrolling_left,
["<C-k>"] = actions.preview_scrolling_right,
["<PageUp>"] = actions.results_scrolling_up,
["<PageDown>"] = actions.results_scrolling_down,
["<M-f>"] = actions.results_scrolling_left,
["<M-k>"] = actions.results_scrolling_right,
["?"] = actions.which_key,
},