diff options
| author | Kai Moschcau <kai.moschcau@blecon.de> | 2025-07-29 15:26:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 06:26:25 -0700 |
| commit | 177be29e7b9c084c9200ee4033eb66e04ac536ec (patch) | |
| tree | 87d3d64254c297c3e30a9f5ea7bfbddb8fdaa37e /lsp | |
| parent | docs: mention 'exrc' for project-local configuration #3973 (diff) | |
| download | nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.tar nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.tar.gz nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.tar.bz2 nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.tar.lz nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.tar.xz nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.tar.zst nvim-lspconfig-177be29e7b9c084c9200ee4033eb66e04ac536ec.zip | |
fix(vue_ls): nil references in tsserverRequest #3977
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/vue_ls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/vue_ls.lua b/lsp/vue_ls.lua index 1e7e7a4d..39008020 100644 --- a/lsp/vue_ls.lua +++ b/lsp/vue_ls.lua @@ -41,7 +41,7 @@ return { payload, }, }, { bufnr = context.bufnr }, function(_, r) - local response_data = { { id, r.body } } + local response_data = { { id, r and r.body } } ---@diagnostic disable-next-line: param-type-mismatch client:notify('tsserver/response', response_data) end) |
