nvim-lua / lsp_extensions.nvim

Repo to hold a bunch of info & extension callbacks for built-in LSP. Use at your own risk :wink:
MIT License
212 stars 19 forks source link

Fix inlay_hints callback by using new handler signature #29

Closed mrnugget closed 3 years ago

mrnugget commented 3 years ago

This commit made a breaking change to the handler signature: neovim/neovim@df17d78

This commit fixes inlay hints by changing the signature of the callback to the new signature.

It uses the util introduced in 379a935b797f5f8a386bcbfd3b105da8007a9303 to be backwards compatible (if I understand the code correctly).

tjdevries commented 3 years ago

Thanks 😁