44
45

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 5 years have passed since last update.

VSCodeで空白文字を見やすくする方法

Last updated at Posted at 2018-08-22

#VSCodeは空白文字が見にくい...
VSCodeでシェルスクリプトを作成した際、余分な全角スペースがあって動かなかったことがありました...。
ホワイトスペースが見やすくなればもうこんな失敗しません!!:frowning2:
ということで、以下のように設定して見ました。
:speech_left:Visual Studio Code 1.26.1

#step1:renderWhitespaceを設定する
①基本設定->設定
setthing.json 内でホワイトスペースを表示する設定を以下のように記入する。

  "editor.renderWhitespace": "all",

②ついでにタブは半角スペース4つ分に指定。
 editor.detectIndentationはtrueにしていると自動でtabSizeが決まってしまう

  "editor.detectIndentation": false, 
  "editor.tabSize": 4,

#step2:拡張機能Whitespace+で空白を見やすくする
Whitespace+は空白文字に色をつけてくれる拡張機能です。

①Cmd + Shift + x で拡張機能画面を開いて「Whitespace+」を検索。インストールする。
②Cmd + Shift + p でコマンドパレットを開き、「Whitespace+ Toggle」を実行

#見やすくなりました
step1,2を設定した結果がこちらです。だいぶ見やすくなりました!
image.png

44
45
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
44
45

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?