1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

use vim.cmd instead of vim.api.nvim_exec

This commit is contained in:
jdhao 2021-07-29 00:09:42 +08:00
parent 3cdb08c5f1
commit 84680878a2

View File

@ -36,7 +36,7 @@ local on_attach = function(client, bufnr)
-- The blow command will highlight the current variable and its usages in the buffer.
if client.resolved_capabilities.document_highlight then
vim.api.nvim_exec([[
vim.cmd([[
hi link LspReferenceRead Visual
hi link LspReferenceText Visual
hi link LspReferenceWrite Visual
@ -45,7 +45,7 @@ local on_attach = function(client, bufnr)
autocmd CursorHold <buffer> lua vim.lsp.buf.document_highlight()
autocmd CursorMoved <buffer> lua vim.lsp.buf.clear_references()
augroup END
]], false)
]])
end
local msg = string.format('Language server %s started!' , client.name)