nvim: lsp: Use local leader for running code lens

We use <Leader>l for linting. This should have been done as part of
commit b294f19.
This commit is contained in:
Sanchayan Maity 2022-12-12 10:10:00 +05:30
parent d0b5159bd9
commit ac65aa26cb
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ local on_attach = function(client, bufnr)
if client.server_capabilities.codeLensProvider or client.server_capabilities.documentHighlightProvider then
if client.server_capabilities.codeLensProvider then
vim.api.nvim_buf_set_keymap(bufnr, "n", "<Leader>l", "<cmd>lua vim.lsp.codelens.run()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "<LocalLeader>l", "<cmd>lua vim.lsp.codelens.run()<CR>", opts)
vim.api.nvim_create_autocmd({"CursorHold", "CursorHoldI", "InsertLeave"}, {
group = lsp_augroup_id,
buffer = bufnr,