如何摆脱 vscode 中的这个对话框 window?

How to get rid of this dialog window in vscode?

我是 vscode 的新手,我在其中 运行 python。有没有办法删除它?

我已经尝试更改许多编辑器设置,但似乎没有任何效果。

这是我当前的用户设置文件。

{
    "window.zoomLevel": 0.8,
    "terminal.integrated.shell.windows": "C:\WINDOWS\Sysnative\cmd.exe",
    "workbench.colorTheme": "One Dark Pro",
    "editor.fontFamily": "Fira Code medium",
    "terminal.integrated.fontSize": 14,
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.cursorStyle": "line",
    "files.autoSave": "afterDelay",
    "editor.acceptSuggestionOnEnter": "off",
    "diffEditor.renderIndicators": false,
    "editor.acceptSuggestionOnCommitCharacter": false,
    "editor.accessibilitySupport": "off"
}

如您所见,我已尝试关闭许多编辑器设置,但没有任何效果。

这些是我目前拥有的扩展。

尝试:

"editor.quickSuggestions": {
  "other": false,
  "comments": false,
  "strings": false
},

将“other”设置为 false 以关闭这些快速建议。

实际上我认为这是经过仔细检查后的参数和类型信息,所以尝试:

"editor.parameterHints": false,