0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

VSCode: ツリー構造のインデントを見やすくする方法

Posted at

VSCodeは最も広く知られたエディタの1つですね。
ただ、開発ファイルが増えて階層が深くなるとファイルエクスプローラーのインデントが見にくくなり、開いたファイルがどの位置にあるのかが分かりづらくなりがちです。

そこで、インデントをわかりやすくする方法として階層をカラーリングしてくれる設定を紹介します。

tree.indentGuidesStrokeでカラーリングを追加

  1. cmd(ctl)+Shift+P でコマンドパレットを開く
  2. Open Settings (JSON) を選択、JSONファイルが開く
  3. 以下の内容を追加
setting.json
"workbench.colorCustomizations": {
		"tree.indentGuidesStroke": "#ffffff"
	}

もちろんカラーコードは任意のものでOKです。

設定、保存後、一度VSCodeを落とし、再起動させるとツリー構造のインデントが見やすくなっていると思います。

before:
image.png
after(tree.indentGuidesStroke#ab34ebを設定):
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?