diff options
author | Andrew Fridley <[email protected]> | 2021-08-12 00:49:37 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-12 10:19:37 +0430 |
commit | a3344203818658441d176fe279e1978505940432 (patch) | |
tree | 845aa50b570acb67cb08891031d480b8a5a8b62e /lua/core/telescope.lua | |
parent | abf7fee04885befaf99eff6a62c8c5774df8613e (diff) |
Please... reverse history and cycle next telescope bindings (#1276)
Diffstat (limited to 'lua/core/telescope.lua')
-rw-r--r-- | lua/core/telescope.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/core/telescope.lua b/lua/core/telescope.lua index f4d154b0..f8862260 100644 --- a/lua/core/telescope.lua +++ b/lua/core/telescope.lua @@ -60,8 +60,8 @@ M.config = function() -- ["<CR>"] = actions.select_default + actions.center + my_cool_custom_action, }, n = { - ["<C-j>"] = actions.move_selection_next, - ["<C-k>"] = actions.move_selection_previous, + ["<C-n>"] = actions.move_selection_next, + ["<C-p>"] = actions.move_selection_previous, ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, -- ["<c-t>"] = trouble.open_with_trouble, -- ["<C-i>"] = my_cool_custom_action, |