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:11:46 +03:00
|
|
|
"version": "1.4.2",
|
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",
|
|
|
|
"command": "workbench.files.action.closeFile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "f5",
|
|
|
|
"win": "f9",
|
|
|
|
"linux": "f9",
|
|
|
|
"command": "editor.action.sortLinesAscending",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+f5",
|
|
|
|
"win": "ctrl+f9",
|
|
|
|
"linux": "ctrl+f9",
|
|
|
|
"command": "editor.action.sortLinesDescending",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+cmd+[",
|
|
|
|
"command": "workbench.action.previousEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+cmd+]",
|
|
|
|
"command": "workbench.action.nextEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+s",
|
|
|
|
"command": "workbench.action.files.saveAll"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+b",
|
|
|
|
"win": "ctrl+k ctrl+b",
|
|
|
|
"linux": "ctrl+k ctrl+b",
|
|
|
|
"command": "workbench.action.toggleSidebarVisibility"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+alt+up",
|
|
|
|
"command": "scrollLineUp",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+alt+down",
|
|
|
|
"command": "scrollLineDown",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+tab",
|
|
|
|
"win": "shift+tab",
|
|
|
|
"linux": "shift+tab",
|
|
|
|
"command": "tab",
|
|
|
|
"when": "editorTextFocus && !editorTabMovesFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+t",
|
|
|
|
"command": "workbench.action.quickOpen"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+r",
|
|
|
|
"win": "ctrl+r",
|
|
|
|
"linux": "ctrl+r",
|
|
|
|
"command": "workbench.action.gotoSymbol"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"win": "ctrl+;",
|
|
|
|
"linux": "ctrl+;",
|
|
|
|
"command": "workbench.action.gotoSymbol"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+alt+down",
|
|
|
|
"command": "editor.action.goToDeclaration"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"win": "alt+-",
|
|
|
|
"linux": "alt+-",
|
|
|
|
"command": "workbench.action.navigateBack"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"win": "alt+shift+-",
|
|
|
|
"linux": "alt+shift+-",
|
|
|
|
"command": "workbench.action.navigateForward"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+g",
|
|
|
|
"win": "f3",
|
|
|
|
"linux": "f3",
|
|
|
|
"command": "editor.action.nextMatchFindAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "f4",
|
|
|
|
"win": "f4",
|
|
|
|
"linux": "f4",
|
|
|
|
"command": "editor.action.nextMatchFindAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "shift+f4",
|
|
|
|
"win": "shift+f4",
|
|
|
|
"linux": "shift+f4",
|
|
|
|
"command": "editor.action.previousMatchFindAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+cmd+up",
|
|
|
|
"win": "ctrl+shift+up",
|
|
|
|
"linux": "ctrl+shift+up",
|
|
|
|
"command": "editor.action.moveLinesUpAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+cmd+down",
|
|
|
|
"win": "ctrl+shift+down",
|
|
|
|
"linux": "ctrl+shift+down",
|
|
|
|
"command": "editor.action.moveLinesDownAction",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+/",
|
|
|
|
"win": "ctrl+shift+/",
|
|
|
|
"linux": "ctrl+shift+/",
|
|
|
|
"command": "editor.action.commentLine",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+up",
|
|
|
|
"win": "ctrl+k ctrl+up",
|
|
|
|
"linux": "ctrl+k ctrl+up",
|
|
|
|
"command": "workbench.action.splitEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+2",
|
|
|
|
"win": "alt+shift+2",
|
|
|
|
"linux": "alt+shift+2",
|
|
|
|
"command": "workbench.action.splitEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+down",
|
|
|
|
"win": "ctrl+k ctrl+down",
|
|
|
|
"linux": "ctrl+k ctrl+down",
|
|
|
|
"command": "workbench.action.closeActiveEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+cmd+[",
|
|
|
|
"command": "editor.fold",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+alt+]",
|
|
|
|
"command": "editor.unfold",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+k cmd+0",
|
|
|
|
"win": "ctrl+k ctrl+0",
|
|
|
|
"linux": "ctrl+k ctrl+0",
|
|
|
|
"command": "editor.unfoldAll",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "alt+f12",
|
|
|
|
"command": "editor.action.showContextMenu",
|
|
|
|
"when": "editorTextFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+shift+d",
|
|
|
|
"win": "ctrl+shift+d",
|
|
|
|
"linux": "ctrl+shift+d",
|
|
|
|
"command": "editor.action.copyLinesDownAction",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+shift+up",
|
|
|
|
"win": "ctrl+alt+up",
|
|
|
|
"linux": "ctrl+alt+up",
|
|
|
|
"command": "editor.action.copyLinesUpAction",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+l",
|
|
|
|
"win": "ctrl+l",
|
|
|
|
"linux": "ctrl+l",
|
|
|
|
"command": "expandLineSelection",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+d",
|
|
|
|
"win": "ctrl+d",
|
|
|
|
"linux": "ctrl+d",
|
|
|
|
"command": "editor.action.addSelectionToNextFindMatch",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+m",
|
|
|
|
"win": "ctrl+m",
|
|
|
|
"linux": "ctrl+m",
|
|
|
|
"command": "editor.action.jumpToBracket",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "cmd+alt+/",
|
|
|
|
"win": "ctrl+shift+/",
|
|
|
|
"linux": "ctrl+shift+/",
|
|
|
|
"command": "editor.action.blockComment",
|
|
|
|
"when": "editorFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "super+alt+f",
|
|
|
|
"win": "ctrl+h",
|
|
|
|
"linux": "ctrl+h",
|
|
|
|
"command": "workbench.action.replaceInFiles"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mac": "ctrl+shift+k",
|
|
|
|
"win": "ctrl+shift+k",
|
|
|
|
"linux": "ctrl+shift+k",
|
|
|
|
"command": "editor.action.deleteLines",
|
|
|
|
"when": "editorFocus"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"vscode": "^0.9.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"jsonfile": "^2.2.3"
|
|
|
|
}
|
|
|
|
}
|