Open stonemaster opened 1 year ago
A lot of LSP implementations support so-called inlay hints, visual hints giving extra information on auto declared types or function parameters: https://bartwullems.blogspot.com/2021/12/visual-studio-2022inline-hints.html
auto
The extension in the proctol has been implemented by several other language servers like clangd, rust-analyzer and omnisharp.
clangd
rust-analyzer
omnisharp
According to the clangd documentation, the protocol might become standardized, and clangd and rust use the same format.
rust
the inlay hints have already been standardized in the protocol for a while
A lot of LSP implementations support so-called inlay hints, visual hints giving extra information on
auto
declared types or function parameters: https://bartwullems.blogspot.com/2021/12/visual-studio-2022inline-hints.htmlThe extension in the proctol has been implemented by several other language servers like
clangd
,rust-analyzer
andomnisharp
.According to the clangd documentation, the protocol might become standardized, and
clangd
andrust
use the same format.