From d839ea49938712c3c38d7f94b673050a2994da9f Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 28 Oct 2024 16:13:18 -0500 Subject: [PATCH] refactor(nvim): do not change cursor pos on buf del in telescope --- users/price/dots/.config/nvim/lua/plugins/configs/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/price/dots/.config/nvim/lua/plugins/configs/telescope.lua b/users/price/dots/.config/nvim/lua/plugins/configs/telescope.lua index dae4d5a7..f23a7df9 100644 --- a/users/price/dots/.config/nvim/lua/plugins/configs/telescope.lua +++ b/users/price/dots/.config/nvim/lua/plugins/configs/telescope.lua @@ -153,7 +153,7 @@ return { [""] = actions.preview_scrolling_left, [""] = actions.preview_scrolling_right, [""] = actions.cycle_history_next, - [""] = actions.delete_buffer + actions.move_to_top, + [""] = actions.delete_buffer, [""] = actions.cycle_history_prev, [""] = actions.smart_send_to_qflist, },