如何在Visual Studio Code for F#中禁用自动内联类型注释/提示?

How to disable auto inline type comments/hints in Visual Studio Code for F#?

提问人:Maksim Shamihulau 提问时间:11/2/2023 更新时间:11/2/2023 访问量:41

问:

如何摆脱 VS Code 生成的突兀自动提示:// Printf.TextWriterFormat...

enter image description here

我正在使用Ionide插件,如下所示:settings.json

{
  "FSharp.inlayHints.enabled": false,
  "FSharp.inlayHints.disableLongTooltip": true,
  "editor.inlayHints.enabled": "offUnlessPressed",
  "FSharp.inlayHints.typeAnnotations": false
}
visual-studio-code f# 离子

评论


答:

2赞 Mark Pattison 11/2/2023 #1

具体如下:

{
  "FSharp.lineLens.enabled": "never"
}

您可能需要重新加载窗口才能使其生效。

如果您也不想在函数定义上方显示相同的信息,则还需要

{
    "FSharp.codeLenses.signature.enabled": false
}

代码镜头显示在相关代码上方;线透镜是直列式显示的。