问题描述
我正在尝试找出启用这些小内联注释的设置.
那些是 Inlay Hints
.您可以使用以下设置启用(默认)或禁用它们:
编辑器>镶嵌提示:已启用
或通过在设置 UI 中搜索 Inlay Hints
来更改 Font Family
或 Font Size
.
并且对 js/ts 文件的参数名称/类型、变量类型等有更好的控制.
有关更多信息,请参阅发行说明
这可以帮助您一目了然地了解每个参数的含义,这对于采用布尔标志或有容易混淆的参数.
要启用参数名称提示,请设置javascript.inlayHints.parameterNames.enabled
或typescript.inlayHints.parameterNames
设置.有三种可能的值:
none
— 禁用参数嵌入提示.literals
— 只显示镶嵌文字提示(字符串、数字、布尔值).all
— 显示镶嵌所有参数的提示.
此外,VS Code 还提供了显示隐式类型的 inlay 提示JavaScript 和 TypeScript 代码中的信息.
Variable type inlay 提示显示没有的变量类型显式类型注释.
设置 - javascript.inlayHints.variableTypes.enabled
和typescript.inlayHints.variableTypes.enabled
[更多信息请参见发行说明链接.]
I'm trying to work out the setting that enables these little inline annotations.
Those are Inlay Hints
. You can enable (the default) or disable them with the setting:
Editor > Inlay Hints: Enabled
or change the Font Family
or Font Size
by searching for Inlay Hints
in the Settings UI.
And there is finer control for parameter names/types, variable types and more for js/ts files.
For a lot more, see the release notes v1.60 release notes:
[And more at the release notes link.]
这篇关于有人知道 VS Code Insiders 中此设置的名称吗?对于变灰的参数和变量注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!