web-dev-qa-db-ja.com

VSコードでガターインジケーターを無効にするにはどうすればよいですか?

VS Codeでは、作業中のフォルダーにバージョン管理がある場合、「Gutter」セクションで、新しい行と変更された行が小さなカラーパッチで示されます。実際には、行番号の近くの左側と、スクロールバーの右側の両方にあります。

そのナンセンスをすべてオフにする方法はありますか?ほとんど気が散ります。

18
Lokathor

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"
}
39
Alex

設定に移動し、「Scm Diff Decorations」を検索して、なしに設定します。

3
Channel