ショートカット
やりたいこと |
ショートカット |
コマンドパレットを開く |
Cmd + Shift + P |
ターミナルを開く |
Ctrl + Shift + @ |
タブを移動する |
Ctrl + Tab |
開いているフォルダの中からファイルを検索する |
Cmd + P |
エクスプローラー ↔ エディターの移動 |
Shift + Cmd + E |
設定
やりたいこと |
設定 |
新しいファイルを開くと今開いているファイルが閉じられてしまう対策 |
"workbench.editor.enablePreview": false |
ファイルを自動保存する |
"files.autoSave": "afterDelay" |
Welcomeページを表示しない |
"workbench.startupEditor": "none" |
コピペ時に書式を保持しない |
Editor: Copy With Syntax Highlighting のチェックを外す |
ミニマップの無効化 |
"editor.minimap.enabled" : false |
エクステンション
やりたいこと |
エクステンション |
テーマをIntelliJ Darcula風にする |
Darcula Theme - WebStorm Edition |
テーマをPyCharm Darcula風にする |
Darcula PyCharm Theme |
Docker |
Docker |
Kubernetes |
Kubernetes |
Python |
Python |
ESLint |
ESLint |
ファイルをデフォルトブラウザで開く |
open in browser (ショートカットはAlt + B) |
キーバインドをIntelliJ風にする |
IntelliJ IDEA Keybindings |
IntelliJ風のPostfix Completion |
TS/JS postfix completion |
TODO一覧表示 |
Todo Tree |
※キーバインドを変えるとショートカットが上記と変わってしまうので注意
settings.json
"todo-tree.customHighlight": {
"TODO": {
"icon": "alert",
"type": "text",
"foreground": "blue",
"background": "white",
"opacity": 100,
"iconColour": "blue"
},
"FIXME": {
"icon": "alert",
"type": "text",
"foreground": "blue",
"background": "white",
"opacity": 100,
"iconColour": "blue"
}
},