gpt4 book ai didi

visual-studio-code - 如何禁用VS Code中的装订线指示器?

转载 作者:行者123 更新时间:2023-12-03 13:22:29 24 4
gpt4 key购买 nike

在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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com