diff --git a/dots/.config/nvim/lua/plugins/configs/telescope.lua b/dots/.config/nvim/lua/plugins/configs/telescope.lua index 91028c1b..28daad3c 100644 --- a/dots/.config/nvim/lua/plugins/configs/telescope.lua +++ b/dots/.config/nvim/lua/plugins/configs/telescope.lua @@ -130,14 +130,21 @@ return { }, mappings = { i = { - [''] = actions.preview_scrolling_down, - [''] = actions.preview_scrolling_up, - [''] = actions.preview_scrolling_left, - [''] = actions.preview_scrolling_right, - [""] = actions.cycle_history_next + actions.delete_buffer + actions.move_to_top, + [""] = actions.toggle_selection, + [""] = actions.preview_scrolling_down, + [""] = actions.preview_scrolling_up, + [""] = actions.preview_scrolling_up, + [""] = actions.preview_scrolling_down, + [""] = actions.preview_scrolling_left, + [""] = actions.preview_scrolling_right, + [""] = actions.cycle_history_next, + [""] = actions.delete_buffer + actions.move_to_top, [""] = actions.cycle_history_prev, [""] = actions.smart_send_to_qflist, }, + n = { + [""] = actions.smart_send_to_qflist, + }, }, prompt_prefix = "  ", selection_caret = " ",