feat: close telescope immediatly
This commit is contained in:
parent
ffae2576e9
commit
46c64e6bd5
1 changed files with 7 additions and 2 deletions
|
@ -5,9 +5,14 @@ require('telescope').setup({
|
||||||
mappings = {
|
mappings = {
|
||||||
i = {
|
i = {
|
||||||
["<C-j>"] = actions.move_selection_next,
|
["<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 = {
|
extensions = {
|
||||||
|
|
Loading…
Reference in a new issue