adding better navigation for telescope search

This commit is contained in:
Arjun Patel
2023-02-03 07:30:21 -06:00
parent cdb4273fe9
commit 31a72d58ac
+4 -4
View File
@@ -25,10 +25,10 @@ telescope.setup(astronvim.user_plugin_opts("plugins.telescope", {
mappings = { mappings = {
i = { i = {
["<C-n>"] = actions.cycle_history_next, -- ["<C-n>"] = actions.cycle_history_next,
["<C-p>"] = actions.cycle_history_prev, -- ["<C-p>"] = actions.cycle_history_prev,
["<C-j>"] = actions.move_selection_next, ["<C-n>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous, ["<C-p>"] = actions.move_selection_previous,
}, },
n = { ["q"] = actions.close }, n = { ["q"] = actions.close },
}, },