fix: get_cursor isnt that useful

This commit is contained in:
əlemi 2024-12-04 01:44:31 +01:00
parent e25019cf27
commit 5a4717ced6
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -138,7 +138,7 @@ function KEYBINDS:set_telescope_keys(opts)
vim.keymap.set('n', '<C-,>', wrap(telescope.live_grep, {layout_strategy = 'vertical'}), opts) vim.keymap.set('n', '<C-,>', wrap(telescope.live_grep, {layout_strategy = 'vertical'}), opts)
vim.keymap.set('n', '<M-,>', wrap(telescope.live_grep, {layout_strategy = 'vertical'}), opts) -- fallback for windows vim.keymap.set('n', '<M-,>', wrap(telescope.live_grep, {layout_strategy = 'vertical'}), opts) -- fallback for windows
vim.keymap.set('n', '<M-]>', wrap(telescope.lsp_references, theme.get_cursor()), opts) vim.keymap.set('n', '<M-]>', wrap(telescope.lsp_references, theme.get_dropdown()), opts)
vim.keymap.set('n', '<M-[>', wrap(telescope.jumplist, theme.get_dropdown()), opts) vim.keymap.set('n', '<M-[>', wrap(telescope.jumplist, theme.get_dropdown()), opts)
vim.keymap.set('n', '<C-;>', telescope.git_bcommits, opts) vim.keymap.set('n', '<C-;>', telescope.git_bcommits, opts)