diff options
author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2022-10-09 12:40:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 12:40:56 +0200 |
commit | 8c2226fc30931690186390d86f963cd43e6947ef (patch) | |
tree | 12df4d87f165f5512d155f58cea26a58e2d57b50 /runtime/lua/vim/lsp.lua | |
parent | edc8a1f04631b021f9c5e79f7162e34f7c3299db (diff) | |
download | rneovim-8c2226fc30931690186390d86f963cd43e6947ef.tar.gz rneovim-8c2226fc30931690186390d86f963cd43e6947ef.tar.bz2 rneovim-8c2226fc30931690186390d86f963cd43e6947ef.zip |
fix(lua): properly configure luacheck and remove `local vim = ...` lines (#20551)
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r-- | runtime/lua/vim/lsp.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index 349c662258..199964e24e 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -5,7 +5,6 @@ local protocol = require('vim.lsp.protocol') local util = require('vim.lsp.util') local sync = require('vim.lsp.sync') -local vim = vim local api = vim.api local nvim_err_writeln, nvim_buf_get_lines, nvim_command, nvim_buf_get_option, nvim_exec_autocmds = api.nvim_err_writeln, |