Compare commits
2 commits
dba8c3f6e8
...
0b659b0459
Author | SHA1 | Date | |
---|---|---|---|
0b659b0459 | |||
802b5ba4d1 |
2 changed files with 57 additions and 0 deletions
|
@ -46,4 +46,29 @@ return function(_, bufnr)
|
|||
vim.lsp.buf.rename()
|
||||
end
|
||||
end, {nargs = "?"})
|
||||
|
||||
vim.api.nvim_buf_create_user_command(bufnr, "LspDocumentHighlight", function(args)
|
||||
local disable = vim.b.document_highlight
|
||||
arg = args.fargs[1]
|
||||
if arg then
|
||||
if string.lower(arg) == "on" then
|
||||
disable = false
|
||||
elseif string.lower(arg) == "off" then
|
||||
disable = true
|
||||
else
|
||||
error "Argument must be either 'on' or 'off' or absent"
|
||||
end
|
||||
end
|
||||
if disable then
|
||||
require("lsp.document_highlight").stop(bufnr)
|
||||
vim.b.document_highlight = false
|
||||
else
|
||||
require("lsp.document_highlight").start(bufnr)
|
||||
vim.b.document_highlight = true
|
||||
end
|
||||
end, {nargs = "?", complete = function(lead)
|
||||
return vim.fn.filter({ "on", "off" }, function(_, val)
|
||||
return val:find("^" .. lead)
|
||||
end)
|
||||
end})
|
||||
end
|
||||
|
|
32
vim/lua/lsp/document_highlight.lua
Normal file
32
vim/lua/lsp/document_highlight.lua
Normal file
|
@ -0,0 +1,32 @@
|
|||
local document_highlight = {}
|
||||
|
||||
vim.api.nvim_create_augroup('lsp_document_highlight', {
|
||||
clear = false
|
||||
})
|
||||
|
||||
function document_highlight.start(bufnr)
|
||||
vim.api.nvim_clear_autocmds({
|
||||
buffer = bufnr,
|
||||
group = 'lsp_document_highlight',
|
||||
})
|
||||
vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, {
|
||||
group = 'lsp_document_highlight',
|
||||
buffer = bufnr,
|
||||
callback = vim.lsp.buf.document_highlight,
|
||||
})
|
||||
vim.api.nvim_create_autocmd({ 'CursorMoved', 'CursorMovedI' }, {
|
||||
group = 'lsp_document_highlight',
|
||||
buffer = bufnr,
|
||||
callback = vim.lsp.buf.clear_references,
|
||||
})
|
||||
end
|
||||
|
||||
function document_highlight.stop(bufnr)
|
||||
vim.api.nvim_clear_autocmds({
|
||||
buffer = bufnr,
|
||||
group = 'lsp_document_highlight',
|
||||
})
|
||||
vim.lsp.buf.clear_references()
|
||||
end
|
||||
|
||||
return document_highlight
|
Loading…
Reference in a new issue