mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Improved Telescope mappings in normal and insert mode
This commit is contained in:
parent
b20f016b04
commit
d690802c4c
1 changed files with 17 additions and 0 deletions
|
|
@ -133,6 +133,23 @@ return {
|
||||||
["<C-Up>"] = function(...)
|
["<C-Up>"] = function(...)
|
||||||
return require("telescope.actions").cycle_history_prev(...)
|
return require("telescope.actions").cycle_history_prev(...)
|
||||||
end,
|
end,
|
||||||
|
["<C-j>"] = function(...)
|
||||||
|
return require("telescope.actions").move_selection_next(...)
|
||||||
|
end,
|
||||||
|
["<C-k>"] = function(...)
|
||||||
|
return require("telescope.actions").move_selection_previous(...)
|
||||||
|
end,
|
||||||
|
["<C-n>"] = function(...)
|
||||||
|
return require("telescope.actions").preview_scrolling_down(...)
|
||||||
|
end,
|
||||||
|
["<C-p>"] = function(...)
|
||||||
|
return require("telescope.actions").preview_scrolling_up(...)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
n = {
|
||||||
|
["q"] = function(...)
|
||||||
|
return require("telescope.actions").close(...)
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue