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 = {
i = {
["<C-n>"] = actions.cycle_history_next,
["<C-p>"] = actions.cycle_history_prev,
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
-- ["<C-n>"] = actions.cycle_history_next,
-- ["<C-p>"] = actions.cycle_history_prev,
["<C-n>"] = actions.move_selection_next,
["<C-p>"] = actions.move_selection_previous,
},
n = { ["q"] = actions.close },
},