diff options
Diffstat (limited to 'lua/lv-telescope/config.lua')
-rw-r--r-- | lua/lv-telescope/config.lua | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lua/lv-telescope/config.lua b/lua/lv-telescope/config.lua index 7bab2633..11e58527 100644 --- a/lua/lv-telescope/config.lua +++ b/lua/lv-telescope/config.lua @@ -43,33 +43,30 @@ O.plugin.telescope = { qflist_previewer = require("telescope.previewers").vim_buffer_qflist.new, -- Developer configurations: Not meant for general override - buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker, + -- buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker, mappings = { i = { ["<C-c>"] = actions.close, ["<C-j>"] = actions.move_selection_next, ["<C-k>"] = actions.move_selection_previous, - -- ["<c-t>"] = trouble.open_with_trouble, ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, + ["<CR>"] = actions.select_default + actions.center, -- To disable a keymap, put [map] = false -- So, to not map "<C-n>", just put + -- ["<c-t>"] = trouble.open_with_trouble, -- ["<c-x>"] = false, -- ["<esc>"] = actions.close, - -- Otherwise, just set the mapping to the function that you want it to be. -- ["<C-i>"] = actions.select_horizontal, - -- Add up multiple actions - ["<CR>"] = actions.select_default + actions.center, - -- You can perform as many actions in a row as you like -- ["<CR>"] = actions.select_default + actions.center + my_cool_custom_action, }, n = { ["<C-j>"] = actions.move_selection_next, ["<C-k>"] = actions.move_selection_previous, - -- ["<c-t>"] = trouble.open_with_trouble, ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, + -- ["<c-t>"] = trouble.open_with_trouble, -- ["<C-i>"] = my_cool_custom_action, }, }, |