diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2021-11-27 13:11:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 13:11:41 -0700 |
commit | 07223fae54b5b8095da16c598fc1395ec3677691 (patch) | |
tree | 32a09fea31ca98396f30b655c0c68deb71dce6ff /runtime/lua/vim/diagnostic.lua | |
parent | 03d250eb4504d5168a754d0f3b7e9992337d60b4 (diff) | |
parent | 6e30461cea4ff9e51088875f82b0c8c78d939fbd (diff) | |
download | rneovim-07223fae54b5b8095da16c598fc1395ec3677691.tar.gz rneovim-07223fae54b5b8095da16c598fc1395ec3677691.tar.bz2 rneovim-07223fae54b5b8095da16c598fc1395ec3677691.zip |
Merge pull request #16455 from gpanders/diag-set
Diffstat (limited to 'runtime/lua/vim/diagnostic.lua')
-rw-r--r-- | runtime/lua/vim/diagnostic.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/diagnostic.lua b/runtime/lua/vim/diagnostic.lua index e1ee6e11a6..095cdf486a 100644 --- a/runtime/lua/vim/diagnostic.lua +++ b/runtime/lua/vim/diagnostic.lua @@ -650,7 +650,7 @@ function M.set(namespace, bufnr, diagnostics, opts) end if vim.api.nvim_buf_is_loaded(bufnr) then - M.show(namespace, bufnr, diagnostics, opts) + M.show(namespace, bufnr, nil, opts) end vim.api.nvim_command( |