1 files changed,
7 insertions(+),
5 deletions(-)
Author:
Smirnov Olexander
ss2316544@gmail.com
Committed at:
2022-06-01 16:59:28 +0300
Parent:
f3f0b52
M
lua/configs/telescope.lua
@@ -20,13 +20,15 @@ ".bin",
}, mappings = { i = { - ["<esc>"] = actions.close, - ["<C-j>"] = actions.move_selection_next, - ["<C-k>"] = actions.move_selection_previous, + ["<esc>"] = "close", + ["<C-j>"] = "move_selection_next", + ["<C-k>"] = "move_selection_previous", + ["<C-d>"] = "delete_buffer", }, n = { - ["<C-j>"] = actions.move_selection_next, - ["<C-k>"] = actions.move_selection_previous, + ["<C-j>"] = "move_selection_next", + ["<C-k>"] = "move_selection_previous", + ["<C-d>"] = "delete_buffer", }, }, },