Reputation: 55293
I just installed VS Code 1.60.0-insider.
At first I thought it was a bug, but now there are type/arguments hinds/labels in the editor:
(predicate:
, callbackfn:
, etc.)
How is this called and how to disable it? I searched online but couldn't find any information.
Note: they only appear in TypeScript files.
Upvotes: 4
Views: 268
Reputation: 56
try use this instruction inside of settings.json, this working well for me.
"editor.inlayHints.enabled": false
Upvotes: 4