在VS Code中,如果您正在使用的文件夹中有版本控制,它将在“装订线”部分中尝试指出哪些行是新行以及哪些行已更改,而色标很少。实际上,在行号的左侧和滚动条的右侧。有没有办法将其关闭?

最佳答案

可以在settings.json Ctrl +中进行更改,

"scm.diffDecorations": "all" | "gutter" | "overview" | "none"

或者,您可以使它们透明:

"workbench.colorCustomizations": {
    // Gutter indicators (left)
    "editorGutter.modifiedBackground": "#0000",
    "editorGutter.addedBackground": "#0000",
    "editorGutter.deletedBackground": "#0000",
    // Scrollbar indicators (right)
    "editorOverviewRuler.addedForeground": "#0000",
    "editorOverviewRuler.modifiedForeground": "#0000",
    "editorOverviewRuler.deletedForeground": "#0000"
}

关于visual-studio-code - 如何禁用VS Code中的装订线指示器?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43969277/

10-13 07:43