0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Visual Studio Codeのショートカットや設定まとめ

0
Posted at

本記事について

Visual Studio Codeでコーディング中に得たショートカットや、自分好みの設定をまとめていきます。
※ショートカットはWindows版の内容を記載しています。

■ショートカット

設定をキーワードで呼び出せるようになる

ctrl + shift + p

アクティブファイルにカーソルを移動できる

ctrl + 1

エディタ左側にカーソル移動

ctrl + shift + e
※押下する度に左側エリアとファイル側を交互に移動できる

ファイルのパスをコピー

(左側エリアで任意のファイル上で)ctrl + c

■設定

▽ユーザー設定または、ワークスペースのsettings.jsonに記入する)

ファイルパスのコピー時、仕切り線をバックスラッシュではなくスラッシュにする

"explorer.copyRelativePathSeparator":"/"

エディタ内のコードホバー時の注釈の表示を無効化

"editor.hover.enabled": "off"

▽Open Keyboard Shortcuts (JSON)で検索後のkeybindings.json内

左側エリアで新規ファイルを作成(標準より短縮した作成方法)

"key": "ctrl+n",
"command": "explorer.newFile"
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?