Skip to content

Instantly share code, notes, and snippets.

@Ryomasao
Created January 17, 2019 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ryomasao/760fcfdc5b6e372868f16f078db36d41 to your computer and use it in GitHub Desktop.
Save Ryomasao/760fcfdc5b6e372868f16f078db36d41 to your computer and use it in GitHub Desktop.
keybind
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "cmd+f1",
"command": "extension.viewInBrowser",
"when": "editorTextFocus"
},
{
"key": "cmd+f1",
"command": "-extension.viewInBrowser",
"when": "editorTextFocus"
},
{
"key": "cmd+]",
"command": "workbench.action.splitEditor"
},
{
"key": "ctrl+alt+cmd+[IntlYen]",
"command": "-workbench.action.splitEditor"
},
{
"key": "cmd+x",
"command": "workbench.action.closeWindow",
"when": "!editorIsOpen && !multipleEditorGroups"
},
{
"key": "cmd+w",
"command": "-workbench.action.closeWindow",
"when": "!editorIsOpen && !multipleEditorGroups"
},
{
"key": "cmd+x",
"command": "workbench.action.closeWindow"
},
{
"key": "shift+cmd+w",
"command": "-workbench.action.closeWindow"
}
]
{
"vim.disableAnnoyingNeovimMessage": true,
"java.errors.incompleteClasspath.severity": "ignore",
"view-in-browser.customBrowser": "chrome",
"emmet.includeLanguages": {
"blade": "html"
},
"python.disablePromptForFeatures": [
"pylint"
],
"extensions.ignoreRecommendations": false,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html",
},
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.showTabs": false,
"editor.tabSize": 2,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment