2
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でテキストファイルのインデントに表示される縦線は要らん

Last updated at Posted at 2023-03-26

はじめに

VSCodeはデフォルト設定ではインデントの箇所に縦線(ガイド)が表示されます。
ソースコードの場合はあった方が良いのですが、テキストファイルの時は要らんと思いませんか?私は要らんと思いました。

plaintext_indent.png

消す方法をググったが、なかなかヒットしなかったので(情弱)、備忘録的に記事として残すことにする。

image.png
ソースコードの場合はガイドがあった方が見やすい

1. 設定内容

1.1. ファイルタイプにかかわらず何が何でも表示させたくない

  1. Ctrl+, で設定画面を開く。
  2. guides-indentationで検索
    image.png
  3. Editor > Guides: Indentation のチェックを外す。

すべてのファイルタイプでインデントにガイドが表示されなくなります。

image.png

image.png

1.2. テキストファイルのみガイド表示させたくない

  1. 上記の Editor > Guides: Indentation のチェックは入れておく。
  2. 設定(JSON)を開く
    image.png
  3. settings.json に以下のような内容を追記
settings.json
    "[plaintext]": {
        "editor.guides.indentation": false
    }

image.png

以上!

2
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
2
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?