0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VSCodeのキーバインド設定、Extensionの簡易説明

Last updated at Posted at 2017-03-30

Windows
Mac

キーバインド設定

  • code画面とterminalを行き来する
  • 複数のterminalを移動する
keybindings.json
json
[
    {
        "key": "ctrl+;",            "command": "workbench.action.terminal.focus",
                                    "when": "editorTextFocus"
    },
    {
        "key": "ctrl+;",            "command": "workbench.action.focusFirstEditorGroup",
                                    "when": "terminalFocus"
    },
    {
        "key": "ctrl+n",            "command": "workbench.action.terminal.focusNext",
                                    "when": "terminalFocus"
    },
    {
        "key": "ctrl+p",            "command": "workbench.action.terminal.focusPrevious",
                                    "when": "terminalFocus"
    }      
]

Extension

CodeRunner

Ctrl + Alt + N start
Ctrl + Alt + M stop

Color Highlight

CSS Color

HTML Snippets

Code snippets

Git History

View Git History
Ctrl + Shift + P > view his

Simple Ruby ERB

Ctrl + Shift + `

<%= %>, <% %>, <%# %>

vscode-icons

icon

PowerShell

Code snippets etc

Javascript Snipet Pack

Code snippets

cl console.log('')
fn function methodName (arguments) {}
afn function(arguments) {}
fe array.forEach(function(item) {});
jp JSON.parse(${1:obj});
DOM
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?