Fix deprecation notice of inlay hints (#873)

This commit is contained in:
Vladislav Grechannik 2024-04-22 13:27:13 +02:00 committed by Richard V.H
parent cf28db3e22
commit c4383c4ce9
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ require('lazy').setup({
-- 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())
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
end, '[T]oggle Inlay [H]ints')
end
end,