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

时间:2018-06-14 11:52:08

标签: python visual-studio-code vscode-settings vscode-tasks

我是vscode的新手,我在其中运行python。有人可以告诉我如何摆脱这个对话窗口。真的很烦人。它实际上阻止我看到它周围的代码。我真的没有用过这个。

image

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

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

{
    "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"
}

正如您所看到的,我已尝试关闭许多编辑器设置,但对我没有任何作用。

这些是我目前的扩展。

Extensions image

如果这是一个愚蠢的问题,或者这已经有了答案,我真的很抱歉。我真的不喜欢这个东西,所以我不得不问这个。谢谢。

1 个答案:

答案 0 :(得分:1)

尝试:

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

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

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

"editor.parameterHints": false,