2016-03-03 18:00:06 +03:00
|
|
|
{
|
2016-10-20 03:07:54 +03:00
|
|
|
"name": "sublime-keybindings",
|
|
|
|
"displayName": "Sublime Keymap",
|
|
|
|
"description": "Popular Sublime keybindings for VS Code.",
|
2016-10-20 03:46:20 +03:00
|
|
|
"version": "1.4.7",
|
2016-10-20 03:07:54 +03:00
|
|
|
"publisher": "ms-vscode",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.6.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"keymap"
|
|
|
|
],
|
|
|
|
"icon": "sublime_keyboard.svg",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/waderyan/vscode-sublime-keybindings.git"
|
|
|
|
},
|
|
|
|
"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-20 03:07:54 +03:00
|
|
|
"command": "workbench.files.action.closeFile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+b",
|
|
|
|
"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": "shift+tab",
|
|
|
|
"win": "shift+tab",
|
|
|
|
"linux": "shift+tab",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "shift+tab",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "tab",
|
|
|
|
"when": "editorTextFocus && !editorTabMovesFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+cmd+up",
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+cmd+down",
|
|
|
|
"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-20 03:39:46 +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-20 03:39:46 +03:00
|
|
|
"key": "context_menu",
|
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": "ctrl+shift+up",
|
|
|
|
"win": "ctrl+alt+up",
|
|
|
|
"linux": "ctrl+alt+up",
|
2016-10-20 03:39:46 +03:00
|
|
|
"key": "ctrl+alt+up",
|
2016-10-20 03:07:54 +03:00
|
|
|
"command": "editor.action.copyLinesUpAction",
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "super+alt+f",
|
|
|
|
"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-20 03:39:46 +03:00
|
|
|
}, {
|
|
|
|
"mac": "cmd++",
|
|
|
|
"key": "ctrl++",
|
|
|
|
"command": "workbench.action.zoomIn"
|
|
|
|
}, {
|
|
|
|
"mac": "cmd+-",
|
|
|
|
"key": "ctrl+-",
|
|
|
|
"command": "workbench.action.zoomIn"
|
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"
|
|
|
|
}
|
|
|
|
}
|