Skip to content

Commit

Permalink
Enable inlay hints toggle for the supporting servers
Browse files Browse the repository at this point in the history
  • Loading branch information
VlaDexa committed Apr 17, 2024
1 parent 2377390 commit 4f9de09
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,16 @@ require('lazy').setup({
callback = vim.lsp.buf.clear_references,
})
end

-- The following autocommand is used to enable inlay hints in your
-- code, if the language server you are using supports them
--
-- This may be unwanted, since they displace some of your code
if client and client.server_capabilities.inlayHintProvider and vim.lsp.inlay_hint then
map('<leader>th', function()
vim.lsp.inlay_hint.enable(0, not vim.lsp.inlay_hint.is_enabled())
end, '[T]oggle Inlay [H]ints')
end
end,
})

Expand Down

0 comments on commit 4f9de09

Please sign in to comment.