LoginSignup
79
48

More than 5 years have passed since last update.

VS Code で 80 桁の位置に線を表示させる

Posted at

行の長さが 80 桁を超えないようにコードを書いていると、やはり目安があると便利ですね。私は VS Code では settings.json にこう設定して 80 桁の位置に線が表示されるようにして使っています。

{
  "editor.rulers": [80]
}

array なので他の桁にも目安がほしいという場合にも対応できますね。

79
48
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
79
48