commit bdf6d8733e2a954031de86e9a2d09c3b03f6641d
parent 286777c3335d9a4d2c30bfda23ba507fead02aee
Author: Jason Hansen <jasonrodneyhansen@gmail.com>
Date: Mon, 20 Feb 2023 23:24:47 -0700
fix(lsp): wrong format of bufnr and client order in error message (#22336)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua
@@ -1736,8 +1736,8 @@ function lsp.buf_detach_client(bufnr, client_id)
vim.notify(
string.format(
'Buffer (id: %d) is not attached to client (id: %d). Cannot detach.',
- client_id,
- bufnr
+ bufnr,
+ client_id
)
)
return