Fix a missing-parameter warning

* inlay_hint.is_enabled()
This commit is contained in:
Le Viet Dat 2024-06-06 08:33:20 +07:00
parent 21d6decca5
commit 0f1b19712c
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,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(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,