Skip to content

Commit

Permalink
fix(telescope): make key bindings more consistent for telescope
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Feb 11, 2023
1 parent d9e95f8 commit 151bf12
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions lua/lazyvim/plugins/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,10 @@ return {
["<C-Up>"] = function(...)
return require("telescope.actions").cycle_history_prev(...)
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(...)
["<C-f>"] = function(...)
return require("telescope.actions").preview_scrolling_down(...)
end,
["<C-p>"] = function(...)
["<C-b>"] = function(...)
return require("telescope.actions").preview_scrolling_up(...)
end,
},
Expand Down

0 comments on commit 151bf12

Please sign in to comment.