From 53aaf53bde9ea1486f2243bb77c4a82ba8126092 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Sun, 26 Jan 2025 04:55:20 +0100 Subject: [PATCH] Fixed tabbing through telescope results --- nvim/dot-config/nvim/lua/plugins/telescope.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/dot-config/nvim/lua/plugins/telescope.lua b/nvim/dot-config/nvim/lua/plugins/telescope.lua index 8805d20..6d8d4ec 100644 --- a/nvim/dot-config/nvim/lua/plugins/telescope.lua +++ b/nvim/dot-config/nvim/lua/plugins/telescope.lua @@ -27,12 +27,12 @@ return { }, mappings = { n = { - [""] = "move_selection_next", - [""] = "move_selection_previous", + [""] = "move_selection_worse", + [""] = "move_selection_better", }, i = { - [""] = "move_selection_next", - [""] = "move_selection_previous", + [""] = "move_selection_worse", + [""] = "move_selection_better", }, }, borderchars = require("symbols.window").borderchars,