guri3.dev
Published on

VS Codeのコメントアウトの挙動をIntelliJみたいにする

VS Codeでコメントアウトした際に、IntelliJのように自動的に次の行にカーソルを移動するような挙動にする方法。

macrosという拡張機能を入れる。

Code > Preferences > Settings から設定ファイルを開き、以下の設定を追加する。

"macros": {
  "commentAndMoveDown": ["editor.action.commentLine", "cursorDown"]
}

Code > Preferences > Keyboard Shortcuts から設定ファイルを開き、以下の設定を追加する。

{
  "command": "macros.commentAndMoveDown",
  "key": "cmd+/",
  "when": "editorTextFocus"
}