VSCode v.1.23(2018年5月リリース)は、アクティブおよびその他の非アクティブなインデントガイドに色を付ける機能を追加しました:
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#ff0000",
"editorIndentGuide.background": "#ff00ff"
}
アクティブなガイドのみを表示したい場合は、非アクティブの背景を透明なalaに設定します。
"workbench.colorCustomizations": {
"editorIndentGuide.background": "#fff0"
}
それらはインデントガイドです。それらの色は、settings.jsonで変更できます。
"workbench.colorCustomizations": {
"editorIndentGuide.background": "#ff0000"
}
あなたはこれを使うことができます、私はこれがあなたが望むものだと信じています
リファレンス: https://code.visualstudio.com/updates/v1_23#_highlighted-indent-guides
"workbench.colorCustomizations":{
"editorIndentGuide.activeBackground":"#ff0000"
}