feat: close telescope immediatly
parent
ffae2576e9
commit
46c64e6bd5
|
@ -5,9 +5,14 @@ require('telescope').setup({
|
|||
mappings = {
|
||||
i = {
|
||||
["<C-j>"] = actions.move_selection_next,
|
||||
["<C-k>"] = actions.move_selection_previous
|
||||
["<C-k>"] = actions.move_selection_previous,
|
||||
["<ESC>"] = actions.close,
|
||||
["<C-c>"] = actions.close
|
||||
},
|
||||
n = {['<C-c>'] = actions.close}
|
||||
n = {
|
||||
["<ESC>"] = actions.close,
|
||||
['<C-c>'] = actions.close
|
||||
}
|
||||
}
|
||||
},
|
||||
extensions = {
|
||||
|
|
Loading…
Reference in New Issue