Telescope: Disable Tab selection.

This commit is contained in:
Dmitry Voronin 2024-10-24 10:08:04 +03:00
parent e4eb81ea7f
commit d3fd0fe884
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -2,7 +2,14 @@
{
text = ''
require("telescope").setup{
defaults = { },
defaults = {
mappings = {
i = {
["<Tab>"] = "move_selection_previous",
["<S-Tab>"] = "move_selection_next",
},
},
},
extensions = { },
pickers = { },
}