wyc
wyc

Reputation: 55293

VS Code showing "type/arguments" in editor as labels

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:

enter image description here

(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

Answers (1)

Iury Brasileiro
Iury Brasileiro

Reputation: 56

try use this instruction inside of settings.json, this working well for me.

"editor.inlayHints.enabled": false 

Upvotes: 4

Related Questions