LoginSignup
7
7

More than 3 years have passed since last update.

[自分用] VSCode (on Mac)使い方メモ

Last updated at Posted at 2019-02-08

ショートカット

やりたいこと ショートカット
コマンドパレットを開く 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"
        }
    },
7
7
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
7
7