VSCodeがVer1.61でインデントガイド設定が変わった?
Contents
はじめに
プライベートでも仕事でもVSCodeを愛用していたのだが、いつからか設定ファイルのインデントガイドで差分が出てくるようになった。
どういうこと?仕様が変わった?
確認
取り上げているページがほとんど見つからなかったので、VSCodeの更新から探してみた。
すると Version 1.61 の更新情報から下記記述が見つかった。
Indentation guides settings
The editor.renderIndentGuides and editor.highlightActiveIndentGuide settings have been deprecated in favor of editor.guides.indentation and editor.guides.highlightActiveIndentation.
『Visual Studio Code September 2021』, Visual Studio Code, https://code.visualstudio.com/updates/v1_61, 2022-07-28
要するに、今まで使っていた『editor.renderIndentGuides』とか『editor.highlightActiveIndentGuide』は非推奨になり、『editor.guides.indentation』とか『editor.guides.highlightActiveIndentation』にしてくださいねということ。
ちなみに『editor.guides.indentation』はインデントがわかりやすいよう縦線が入るもの。
終わりに
困った時は公式ドキュメントに限りますね。ありがたや。
公式ページに検索機能があったので、『renderIndentGuides』とか『guides』で調べるとすぐに到達できた。
無駄に参考サイトを探してしまったのが徒労になってしまった…頼るべきは公式。再認識しておく。
参考
- 『Visual Studio Code September 2021』, Visual Studio Code, https://code.visualstudio.com/updates/v1_61, 2022-07-28
- Ver 1.61 の更新情報
- 『Visual Studio Code User Interface』, Visual Studio Code, https://code.visualstudio.com/docs/getstarted/userinterface#_indent-guides, 2022-07-28
- インデントガイドの詳細がある