From 151bf12a9f9591bd324a359374e6c4a5fb65bbbc Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 11 Feb 2023 13:28:11 +0100 Subject: [PATCH] fix(telescope): make key bindings more consistent for telescope --- lua/lazyvim/plugins/editor.lua | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index deeaaa79..d2c9413e 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -133,16 +133,10 @@ return { [""] = function(...) return require("telescope.actions").cycle_history_prev(...) end, - [""] = function(...) - return require("telescope.actions").move_selection_next(...) - end, - [""] = function(...) - return require("telescope.actions").move_selection_previous(...) - end, - [""] = function(...) + [""] = function(...) return require("telescope.actions").preview_scrolling_down(...) end, - [""] = function(...) + [""] = function(...) return require("telescope.actions").preview_scrolling_up(...) end, },