Add keybind to use location list

This commit is contained in:
Sonny Bakker 2026-09-20 10:17:05 +02:00
parent 9646edf680
commit fbc414535b

View file

@ -2,6 +2,7 @@
local telescope = require('telescope')
local builtin = require('telescope.builtin')
local actions = require('telescope.actions')
local opts = { noremap = true, silent = true }
@ -34,5 +35,10 @@ telescope.setup({
prompt_position = 'bottom',
vertical = { width = 0.8, height = 0.9 }
},
mappings = {
n = {
['<C-l>'] = actions.send_to_loclist + actions.open_loclist,
},
},
},
})