[VSCode]行折り曲げをウインドウ幅でやる設定

概要

Visual Studio Codeで行折り曲げをウインドウ幅にするには、editor.wrappingColumnに0を指定します。

手順

メニューの[File]→[Preferences]→[User Settings]と選択するとSettings.jsonが開くので、そこに 「”editor.wrappingColumn”: 0」を追加します。

具体的には、こんな感じ。

// Place your settings in this file to overwrite the default settings
{
	// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping
	"editor.wrappingColumn": 0
}

日本語と英語が混じった場合の行折り曲げ処理がなんかビミョーだけれど、横スクロールするのはもっと嫌。

コメントを残す