VS Code

VS Code (Visual Studio Code) #

設定 #

設定を開く #

  • Macの場合:Code > Preferences... > Settings

ファイルを常に新しいタブで開く方法 #

  • workbench.editor.enablePreview を検索しチェックを解除

プロジェクトを常に新しいウィンドウで開く方法 #

  • window.openFoldersInNewWindow を検索し on を選択

code command #

How to enable code command #

  • Use shortcut ⇧ ⌘ p (shift + command + p)
  • Select Shell Command: Install command from PATH

High use commands #

DescriptionCommand
Start VS Codecode
Open a directory with VS Codecode .
Open a file with VS Codecode foo.txt
Compare 2 files with VS Codecode -d foo.txt bar.txt
Display helpcode -h

ショートカット #

開く・閉じる #

内容MacWindows
設定を開くcommand + ,ctrl + ,
コマンドパレットを開くcommand + shift + pctrl + shift + p
新しいウィンドウを開くcommand + shift + nctrl + shift + n
ファイル名を指定して開くcommand + pctrl + p
アクティブなファイルを閉じるcommand + wctrl + w
全てのファイル閉じるcommand + k wctrl + k w

拡大・縮小 #

内容MacWindows
拡大(ズームイン)command + =ctrl + =
縮小(ズームアウト)command + -ctrl + -
全画面表示command + control + -F11

コピー・切り取り・削除 #

内容MacWindows
行末尾のスペースを削除command + k xctrl + k x
行のインデントを追加command + ]ctrl + ]
行のインデントを削除command + [ctrl + [
行のコピー(未選択時)command + cctrl + c
行の切り取り(未選択時)command + xctrl + x
ファイルの相対パスをコピーshift + option + command + c-
ファイルの絶対パスをコピーoption + command + c-
コメント化/コメント解除option + shift + actrl + /

選択 #

内容MacWindows
矩形選択shift + option + マウス・ドラッグshift + alt + マウス・ドラッグ

検索 #

内容MacWindows
プロジェクト全体を検索command + shift + fctrl + shift + f

移動 #

内容MacWindows
カーソル行を下に移動option + alt +
カーソル行を下に移動option + alt +
ファイル履歴を表示し移動control + tabctrl + tab
サイドバーにフォーカスを移動command + 0ctrl + 0
指定行に移動control + gctrl + g
最後に編集した箇所に移動command + k qctrl + k q
対応するカッコに移動command + shift + \ctrl + shift + ¥
前に移動(戻る)option + alt +
次に移動(進む)option + alt +

参考 #