You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: replace deprecated LSP client method calls with colon syntax
Replaces deprecated dot notation with colon notation for LSP client methods:
- client.supports_method() → client:supports_method()
- client.request() → client:request()
- client.request_sync() → client:request_sync()
This addresses deprecation warnings in Neovim 0.11+ as documented in
:help deprecated.txt
Backwards compatible: Colon syntax is just Lua syntactic sugar supported
since Neovim 0.5+. No functionality changes, only modernized syntax.
Fixes: #1543
* fix: make LSP client calls version-aware
* fix(ci): stabilize luajit version and format symbols
0 commit comments