-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-32603: Request textDocument/inlayHint failed with message: #159
Comments
This seems an error caused by underlying tsserver: microsoft/TypeScript#53984, and cannot be fixed here. You can try to reproduce it with VSCode and the same file, and report the error to VSCode or Typescript repo. |
@yioneko Can we suppress the dialog for |
Suppressing error is strongly not recommended, only do this if you previously knew about the errors and their impacts: local notify = vim.notify
local filtered_notify = function(...)
local msg, level = select(1, ...)
if level == vim.log.levels.ERROR and string.match(msg, "vtsls: %-%d+") then
return -- ignored
end
return notify(...)
end
vim.notify = filtered_notify |
where do I have to put this workaround |
I was able to hide this error by adding this to the noice config (
|
I encountered this error today, and followed this workaround for now -- I have to do this because the dialog completely blocks the entire window of the file I'm editing -- and it works. |
Fwiw I'm getting pretty similar error, except message starts with |
Solution suggestions: if you use nvim-notify, you can modify the configuration like this. It works for me:
If you're editing configuration files with |
I have been getting this message since today. Any clue?
The text was updated successfully, but these errors were encountered: