diff options
| author | Dmytro Meleshko <dmytro.meleshko@gmail.com> | 2025-06-20 15:07:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-20 06:07:25 -0700 |
| commit | 0112e1f77983141e1453bd37d124302f1c876c46 (patch) | |
| tree | 860eaf1a98cba84bc04706b3e327f4afb75eed71 /lsp/tinymist.lua | |
| parent | fix(powershell_es): set LogLevel to "Information" #3914 (diff) | |
| download | nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.tar nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.tar.gz nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.tar.bz2 nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.tar.lz nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.tar.xz nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.tar.zst nvim-lspconfig-0112e1f77983141e1453bd37d124302f1c876c46.zip | |
fix: some `on_attach` callbacks may act on the wrong buffer #3916
Problem:
If a server is attached to a non-current buffer by
`vim.lsp.buf_attach_client`, then the Language Server-related
commands may be created in the current (wrong) buffer.
Solution:
Always use the `bufnr` arg provided to `on_attach`.
Diffstat (limited to 'lsp/tinymist.lua')
| -rw-r--r-- | lsp/tinymist.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/tinymist.lua b/lsp/tinymist.lua index d0a6d5c3..3b182a67 100644 --- a/lsp/tinymist.lua +++ b/lsp/tinymist.lua @@ -69,7 +69,7 @@ return { 'tinymist.getDocumentMetrics', } do local cmd_func, cmd_name, cmd_desc = create_tinymist_command(command, client, bufnr) - vim.api.nvim_buf_create_user_command(0, cmd_name, cmd_func, { nargs = 0, desc = cmd_desc }) + vim.api.nvim_buf_create_user_command(bufnr, cmd_name, cmd_func, { nargs = 0, desc = cmd_desc }) end end, } |
