feat: close telescope immediatly

main
mandlm 2022-04-02 10:50:59 +02:00
parent ffae2576e9
commit 46c64e6bd5
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 7 additions and 2 deletions

View File

@ -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 = {