5
6

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

地味に便利なVSCodeの改行を紹介。

Last updated at Posted at 2020-11-30

意外と知らない(かもしれない)、VSCodeの改行まわりについて紹介します。

ショートカット

現在の行の次に行を追加

cmd-enter.gif
行の途中でも改行することができます。いちいち行末に移動しなくていいので便利です。

Mac Windows
Cmd-Enter Ctrl-Enter

現在の行の前に行を追加

cmd-shift-enter.gif
現在の行の上に改行を追加できます。

Mac Windows
Cmd-Shift-Enter Ctrl-Shift-Enter

設定でできること

候補をEnterで選択してしまうことを防止

"editor.acceptSuggestionOnEnter": "off"

改行しようとしたら、候補がEnterで選択されてしまう「わずらわしい」を防止します。
候補を選択する場合はTabでも選択できます。

ファイルの末尾に自動的に改行を挿入する

"html.format.endWithNewline": true

VSCodeの設定でも追加するか否か、設定できます。

5
6
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
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?