2016-03-03 18:00:06 +03:00
|
|
|
{
|
2016-10-20 03:07:54 +03:00
|
|
|
"name": "sublime-keybindings",
|
2016-10-24 18:18:42 +03:00
|
|
|
"displayName": "Sublime Text Keymap",
|
2016-10-24 23:02:12 +03:00
|
|
|
"description": "Popular Sublime Text keybindings for VS Code.",
|
2016-10-25 22:50:17 +03:00
|
|
|
"version": "1.5.9",
|
2016-10-20 03:07:54 +03:00
|
|
|
"publisher": "ms-vscode",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.6.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
2016-10-25 16:43:26 +03:00
|
|
|
"Keymaps"
|
2016-10-20 03:07:54 +03:00
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"keymap"
|
|
|
|
],
|
|
|
|
"icon": "sublime_keyboard.svg",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-10-25 22:50:17 +03:00
|
|
|
"url": "https://github.com/Microsoft/vscode-sublime-keybindings.git"
|
2016-10-20 03:07:54 +03:00
|
|
|
},
|
|
|
|
"bugs": {
|
2016-03-12 02:09:54 +03:00
|
|
|
"url": "https://github.com/Microsoft/vscode-sublime-keybindings/issues"
|
2016-10-20 03:07:54 +03:00
|
|
|
},
|
|
|
|
"contributes": {
|
|
|
|
"keybindings": [
|
|
|
|
{
|
|
|
|
"mac": "cmd+w",
|
|
|
|
"win": "ctrl+w",
|
|
|
|
"linux": "ctrl+w",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+w",
|
2016-10-26 01:23:46 +03:00
|
|
|
"command": "workbench.action.closeActiveEditor"
|
2016-10-20 03:07:54 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "f5",
|
|
|
|
"win": "f9",
|
|
|
|
"linux": "f9",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "f9",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.sortLinesAscending",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+f5",
|
|
|
|
"win": "ctrl+f9",
|
|
|
|
"linux": "ctrl+f9",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+f9",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.sortLinesDescending",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+cmd+[",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+pageup",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.previousEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+cmd+]",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+pagedown",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.nextEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+s",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "none",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.files.saveAll"
|
|
|
|
},
|
|
|
|
{
|
2016-10-24 20:20:51 +03:00
|
|
|
"mac": "cmd+k cmd+b",
|
2016-10-20 03:07:54 +03:00
|
|
|
"win": "ctrl+k ctrl+b",
|
|
|
|
"linux": "ctrl+k ctrl+b",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+k ctrl+b",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.toggleSidebarVisibility"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+alt+up",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+up",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "scrollLineUp",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+alt+down",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+down",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "scrollLineDown",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+t",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+p",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.quickOpen"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+r",
|
|
|
|
"win": "ctrl+r",
|
|
|
|
"linux": "ctrl+r",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+r",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.gotoSymbol"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 03:39:46 +03:00
|
|
|
"mac": "cmd+r",
|
2016-10-20 03:07:54 +03:00
|
|
|
"win": "ctrl+;",
|
|
|
|
"linux": "ctrl+;",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+;",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.gotoSymbol"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+alt+down",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "f12",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.goToDeclaration"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"win": "alt+-",
|
|
|
|
"linux": "alt+-",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+-",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.navigateBack"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"win": "alt+shift+-",
|
|
|
|
"linux": "alt+shift+-",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+-",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.navigateForward"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+g",
|
|
|
|
"win": "f3",
|
|
|
|
"linux": "f3",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "f3",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.nextMatchFindAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "f4",
|
|
|
|
"win": "f4",
|
|
|
|
"linux": "f4",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "f4",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.nextMatchFindAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+f4",
|
|
|
|
"win": "shift+f4",
|
|
|
|
"linux": "shift+f4",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "shift+f4",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.previousMatchFindAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "ctrl+ctrl+up",
|
2016-10-20 03:07:54 +03:00
|
|
|
"win": "ctrl+shift+up",
|
|
|
|
"linux": "ctrl+shift+up",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+up",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.moveLinesUpAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "ctrl+ctrl+down",
|
2016-10-20 03:07:54 +03:00
|
|
|
"win": "ctrl+shift+down",
|
|
|
|
"linux": "ctrl+shift+down",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+down",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.moveLinesDownAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+/",
|
|
|
|
"win": "ctrl+shift+/",
|
|
|
|
"linux": "ctrl+shift+/",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+/",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.commentLine",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+up",
|
|
|
|
"win": "ctrl+k ctrl+up",
|
|
|
|
"linux": "ctrl+k ctrl+up",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+k ctrl+up",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.splitEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+2",
|
|
|
|
"win": "alt+shift+2",
|
|
|
|
"linux": "alt+shift+2",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "alt+shift+2",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.splitEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+down",
|
|
|
|
"win": "ctrl+k ctrl+down",
|
|
|
|
"linux": "ctrl+k ctrl+down",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+k ctrl+down",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.closeActiveEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+[",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctr+shift+[",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.fold",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+alt+]",
|
2016-10-25 22:14:41 +03:00
|
|
|
"key": "ctrl+shift+]",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.unfold",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+0",
|
|
|
|
"win": "ctrl+k ctrl+0",
|
|
|
|
"linux": "ctrl+k ctrl+0",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+k ctrl+0",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.unfoldAll",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+f12",
|
2016-10-25 22:14:41 +03:00
|
|
|
"key": "alt+f12",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.showContextMenu",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+shift+d",
|
|
|
|
"win": "ctrl+shift+d",
|
|
|
|
"linux": "ctrl+shift+d",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+d",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.copyLinesDownAction",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+l",
|
|
|
|
"win": "ctrl+l",
|
|
|
|
"linux": "ctrl+l",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+l",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "expandLineSelection",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+d",
|
|
|
|
"win": "ctrl+d",
|
|
|
|
"linux": "ctrl+d",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+d",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.addSelectionToNextFindMatch",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+m",
|
|
|
|
"win": "ctrl+m",
|
|
|
|
"linux": "ctrl+m",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+m",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.jumpToBracket",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+alt+/",
|
|
|
|
"win": "ctrl+shift+/",
|
|
|
|
"linux": "ctrl+shift+/",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+/",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.blockComment",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-24 20:29:25 +03:00
|
|
|
"mac": "cmd+alt+f",
|
2016-10-20 03:07:54 +03:00
|
|
|
"win": "ctrl+h",
|
|
|
|
"linux": "ctrl+h",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+h",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "workbench.action.replaceInFiles"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+shift+k",
|
|
|
|
"win": "ctrl+shift+k",
|
|
|
|
"linux": "ctrl+shift+k",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+shift+k",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.deleteLines",
|
|
|
|
"when": "editorFocus"
|
2016-10-25 22:14:41 +03:00
|
|
|
},
|
|
|
|
{
|
2016-10-20 03:39:46 +03:00
|
|
|
"mac": "cmd+-",
|
|
|
|
"key": "ctrl+-",
|
2016-10-24 20:35:28 +03:00
|
|
|
"command": "workbench.action.zoomOut"
|
2016-10-25 22:14:41 +03:00
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "ctrl+shift+up",
|
|
|
|
"win": "alt+shift+up",
|
|
|
|
"linux": "alt+shift+up",
|
2016-10-20 19:58:10 +03:00
|
|
|
"key": "alt+shift+up",
|
2016-10-20 19:29:44 +03:00
|
|
|
"command": "cursorColumnSelectUp",
|
2016-10-25 22:14:41 +03:00
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "ctrl+shift+down",
|
|
|
|
"win": "alt+shift+down",
|
|
|
|
"linux": "alt+shift+down",
|
2016-10-20 19:58:10 +03:00
|
|
|
"key": "alt+shift+down",
|
2016-10-20 19:29:44 +03:00
|
|
|
"command": "cursorColumnSelectDown",
|
2016-10-25 22:14:41 +03:00
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "ctrl+shift+pageup",
|
|
|
|
"win": "alt+shift+pageup",
|
|
|
|
"linux": "alt+shift+pageup",
|
2016-10-20 19:58:10 +03:00
|
|
|
"key": "alt+shift+pageup",
|
2016-10-20 19:29:44 +03:00
|
|
|
"command": "cursorColumnSelectPageUp",
|
2016-10-25 22:14:41 +03:00
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "ctrl+shift+pagedown",
|
|
|
|
"win": "alt+shift+pagedown",
|
|
|
|
"linux": "alt+shift+pagedown",
|
2016-10-20 19:58:10 +03:00
|
|
|
"key": "alt+shift+pagedown",
|
2016-10-20 19:29:44 +03:00
|
|
|
"command": "cursorColumnSelectPageDown",
|
2016-10-25 22:14:41 +03:00
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
2016-10-20 19:29:44 +03:00
|
|
|
"mac": "cmd+shift+l",
|
|
|
|
"win": "ctrl+shift+l",
|
|
|
|
"linux": "ctrl+shift+l",
|
2016-10-20 19:58:10 +03:00
|
|
|
"key": "ctrl+shift+l",
|
2016-10-20 19:29:44 +03:00
|
|
|
"command": "editor.action.insertCursorAtEndOfEachLineSelected",
|
|
|
|
"when": "editorTextFocus"
|
2016-10-25 22:14:41 +03:00
|
|
|
},
|
2016-10-24 20:19:23 +03:00
|
|
|
{
|
|
|
|
"mac": "cmd+1",
|
|
|
|
"win": "alt+1",
|
|
|
|
"linux": "alt+1",
|
|
|
|
"key": "alt+1",
|
|
|
|
"command": "workbench.action.openEditorAtIndex1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+2",
|
|
|
|
"win": "alt+2",
|
|
|
|
"linux": "alt+2",
|
|
|
|
"key": "alt+2",
|
|
|
|
"command": "workbench.action.openEditorAtIndex2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+3",
|
|
|
|
"win": "alt+3",
|
|
|
|
"linux": "alt+3",
|
|
|
|
"key": "alt+3",
|
|
|
|
"command": "workbench.action.openEditorAtIndex3"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+4",
|
|
|
|
"win": "alt+4",
|
|
|
|
"linux": "alt+4",
|
|
|
|
"key": "alt+4",
|
|
|
|
"command": "workbench.action.openEditorAtIndex4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+5",
|
|
|
|
"win": "alt+5",
|
|
|
|
"linux": "alt+5",
|
|
|
|
"key": "alt+5",
|
|
|
|
"command": "workbench.action.openEditorAtIndex5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+6",
|
|
|
|
"win": "alt+6",
|
|
|
|
"linux": "alt+6",
|
|
|
|
"key": "alt+6",
|
|
|
|
"command": "workbench.action.openEditorAtIndex6"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+7",
|
|
|
|
"win": "alt+7",
|
|
|
|
"linux": "alt+7",
|
|
|
|
"key": "alt+7",
|
|
|
|
"command": "workbench.action.openEditorAtIndex7"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+8",
|
|
|
|
"win": "alt+8",
|
|
|
|
"linux": "alt+8",
|
|
|
|
"key": "alt+8",
|
|
|
|
"command": "workbench.action.openEditorAtIndex8"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+9",
|
|
|
|
"win": "alt+9",
|
|
|
|
"linux": "alt+9",
|
|
|
|
"key": "alt+9",
|
|
|
|
"command": "workbench.action.openEditorAtIndex9"
|
2016-10-25 01:07:15 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+ctrl+g",
|
|
|
|
"win": "alt+f3",
|
|
|
|
"linux": "alt+f3",
|
|
|
|
"key": "alt+f3",
|
|
|
|
"command": "editor.action.selectHighlights",
|
|
|
|
"when": "editorFocus"
|
2016-10-25 22:14:41 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+shift+r",
|
|
|
|
"win": "ctrl+shift+r",
|
|
|
|
"linux": "ctrl+shift+r",
|
|
|
|
"key": "ctrl+shift+r",
|
|
|
|
"command": "workbench.action.showAllSymbols"
|
2016-10-20 03:07:54 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"vscode": "^0.9.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"jsonfile": "^2.2.3"
|
|
|
|
}
|
2016-10-26 01:23:46 +03:00
|
|
|
}
|