summaryrefslogtreecommitdiff
path: root/lua/core
diff options
context:
space:
mode:
Diffstat (limited to 'lua/core')
-rw-r--r--lua/core/telescope.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/core/telescope.lua b/lua/core/telescope.lua
index 07487a3c..5a067d67 100644
--- a/lua/core/telescope.lua
+++ b/lua/core/telescope.lua
@@ -48,6 +48,8 @@ M.config = function()
-- buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker,
mappings = {
i = {
+ ["<C-n>"] = actions.cycle_history_next,
+ ["<C-p>"] = actions.cycle_history_prev,
["<C-c>"] = actions.close,
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,