vscode-sublime-keybindings/package.json

593 строки
20 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

2016-03-03 18:00:06 +03:00
{
2016-10-20 03:07:54 +03:00
"name": "sublime-keybindings",
2018-04-24 13:35:28 +03:00
"displayName": "Sublime Text Keymap and Settings Importer",
2018-04-15 20:05:51 +03:00
"description": "Import Sublime Text settings and keybindings into VS Code.",
2023-12-14 18:23:45 +03:00
"version": "4.1.10",
2016-10-20 03:07:54 +03:00
"publisher": "ms-vscode",
2020-07-20 19:49:07 +03:00
"license": "SEE LICENSE IN LICENSE.md",
2016-10-20 03:07:54 +03:00
"engines": {
2023-12-14 18:23:45 +03:00
"vscode": "^1.75.0"
2016-10-20 03:07:54 +03:00
},
2017-01-13 01:43:32 +03:00
"categories": [
2016-10-25 16:43:26 +03:00
"Keymaps"
2016-10-20 03:07:54 +03:00
],
"keywords": [
2018-04-15 20:05:51 +03:00
"keymap",
2017-08-24 15:55:48 +03:00
"Importer",
2017-10-11 00:42:12 +03:00
"Settings",
2017-08-24 15:55:48 +03:00
"Sublime Text"
2016-10-20 03:07:54 +03:00
],
2017-02-28 00:47:49 +03:00
"activationEvents": [
2023-01-31 23:56:19 +03:00
"onStartupFinished"
2017-02-28 00:47:49 +03:00
],
2020-08-26 12:25:53 +03:00
"main": "./dist/extension.js",
2020-08-26 11:38:26 +03:00
"browser": "./dist/web/extension.js",
2023-12-14 18:23:45 +03:00
"l10n": "./l10n",
2017-06-22 00:14:43 +03:00
"preview": false,
"extensionKind": [
2019-12-07 06:18:01 +03:00
"ui",
2021-08-30 15:54:26 +03:00
"workspace"
],
2017-07-12 20:17:57 +03:00
"icon": "sublime_keyboard_with_padding.png",
2016-10-20 03:07:54 +03:00
"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
},
2018-04-15 20:16:46 +03:00
"scripts": {
2020-04-24 06:51:10 +03:00
"test": "node ./out/test/runTests.js",
2020-08-26 12:25:53 +03:00
"pretest": "tsc -p ./",
"vscode:prepublish": "npm run package && npm run package-web",
"package": "webpack --mode production --config ./build/node-extension.webpack.config.js",
"compile": "webpack --config ./build/node-extension.webpack.config.js",
2021-04-06 15:11:51 +03:00
"watch": "webpack --watch --config ./build/node-extension.webpack.config.js",
2020-08-26 11:38:26 +03:00
"compile-web": "webpack --config ./build/web-extension.webpack.config.js",
2021-04-06 15:11:51 +03:00
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --config ./build/web-extension.webpack.config.js",
2020-04-24 06:51:10 +03:00
"lint": "tslint -p ./"
2018-04-15 20:16:46 +03:00
},
"devDependencies": {
2021-04-06 15:11:51 +03:00
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
2020-04-24 06:51:10 +03:00
"@types/node": "^12.12.0",
2023-12-14 18:23:45 +03:00
"@types/vscode": "^1.75.0",
2018-04-15 20:16:46 +03:00
"@types/relaxed-json": "^1.0.0",
2021-04-06 15:11:51 +03:00
"glob": "^7.1.6",
"mocha": "^10.2.0",
2021-04-06 15:11:51 +03:00
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"vscode-test": "^1.5.2",
"ts-loader": "^8.1.0",
2023-12-14 18:23:45 +03:00
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
2018-04-15 20:16:46 +03:00
},
"dependencies": {
2021-04-06 15:11:51 +03:00
"relaxed-json": "^1.0.3"
2018-04-15 20:16:46 +03:00
},
2016-10-20 03:07:54 +03:00
"contributes": {
2020-08-26 11:38:26 +03:00
"menus": {
"commandPalette": [
{
"command": "extension.importFromSublime",
"when": ""
}
]
},
2017-08-24 15:55:48 +03:00
"commands": [
2017-02-03 20:57:14 +03:00
{
2018-04-13 17:30:22 +03:00
"command": "extension.importFromSublime",
2023-12-14 18:23:45 +03:00
"title": "%extension.importFromSublime.title%",
"category": "%extension.category%"
2018-03-09 17:44:40 +03:00
}
],
2016-10-20 03:07:54 +03:00
"keybindings": [
2017-02-03 20:57:14 +03:00
{
2019-09-05 05:59:45 +03:00
"mac": "cmd+y",
"win": "ctrl+y",
"linux": "ctrl+y",
"key": "ctrl+y",
2019-12-07 01:23:53 +03:00
"command": "redo",
"when": "editorTextFocus && !editorReadonly"
2019-09-05 05:59:45 +03:00
},
{
2018-04-15 20:16:46 +03:00
"mac": "ctrl+shift+cmd+f",
2017-02-03 20:57:14 +03:00
"win": "shift+f11",
"linux": "shift+f11",
"key": "shift+f11",
"command": "workbench.action.toggleZenMode"
},
2016-10-20 03:07:54 +03:00
{
"mac": "cmd+w",
"win": "ctrl+w",
"linux": "ctrl+w",
2016-10-20 03:39:46 +03:00
"key": "ctrl+w",
"command": "workbench.action.closeActiveEditor"
2016-10-20 03:07:54 +03:00
},
{
"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"
},
{
"mac": "ctrl+cmd+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"
},
{
"mac": "ctrl+cmd+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": "cmd+alt+/",
2016-10-20 03:07:54 +03:00
"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+1",
"linux": "alt+shift+1",
"win": "alt+shift+1",
"key": "alt+shift+1",
"command": "workbench.action.joinTwoGroups"
},
2016-10-20 03:07:54 +03:00
{
"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": "alt+cmd+8",
"win": "alt+shift+8",
"linux": "alt+shift+8",
"key": "alt+shift+8",
"command": "workbench.action.toggleEditorGroupLayout"
},
2016-10-20 03:07:54 +03:00
{
"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",
2017-02-07 02:20:38 +03:00
"command": "editor.action.startFindReplaceAction"
2016-10-20 03:07:54 +03:00
},
{
"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
},
{
"mac": "ctrl+shift+backspace",
"win": "ctrl+shift+backspace",
"linux": "ctrl+shift+backspace",
"key": "ctrl+shift+backspace",
"command": "deleteAllLeft",
"when": "editorFocus"
},
{
"mac": "ctrl+shift+delete",
"win": "ctrl+shift+delete",
"linux": "ctrl+shift+delete",
"key": "ctrl+shift+delete",
"command": "deleteAllRight",
"when": "editorFocus"
},
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",
2017-02-03 20:19:59 +03:00
"command": "editor.action.insertCursorAbove",
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",
2017-02-03 20:19:59 +03:00
"command": "editor.action.insertCursorBelow",
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-11-04 20:33:24 +03:00
},
{
"mac": "ctrl+alt+left",
"win": "alt+left",
"linux": "ctrl+alt+left",
"key": "ctrl+alt+left",
"command": "cursorWordStartLeft",
"when": "editorTextFocus"
},
{
"mac": "ctrl+alt+right",
"win": "alt+right",
"linux": "ctrl+alt+right",
"key": "ctrl+alt+right",
"command": "cursorWordEndRight",
"when": "editorTextFocus"
},
{
"mac": "ctrl+alt+shift+left",
"win": "alt+shift+left",
"linux": "ctrl+alt+shift+left",
"key": "ctrl+alt+shift+left",
"command": "cursorWordStartLeftSelect",
"when": "editorTextFocus"
},
{
"mac": "ctrl+alt+shift+right",
"win": "alt+shift+right",
"linux": "ctrl+alt+shift+right",
"key": "ctrl+alt+shift+right",
"command": "cursorWordEndRightSelect",
"when": "editorTextFocus"
2016-12-10 01:24:49 +03:00
},
{
"mac": "cmd+j",
"key": "ctrl+j",
"command": "editor.action.joinLines",
"when": "editorTextFocus"
},
{
"mac": "cmd+k cmd+u",
"key": "ctrl+k ctrl+u",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus"
},
{
"mac": "cmd+k cmd+l",
"key": "ctrl+k ctrl+l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
},
{
"mac": "cmd+k a",
"key": "ctrl+k a",
"command": "workbench.action.showErrorsWarnings"
},
{
"mac": "cmd+k n",
"key": "ctrl+k n",
"command": "editor.action.marker.next",
"when": "editorFocus"
},
{
"mac": "cmd+k p",
"key": "ctrl+k p",
"command": "editor.action.marker.prev",
"when": "editorFocus"
},
{
"mac": "ctrl+1",
"win": "ctrl+1",
"linux": "ctrl+1",
"key": "ctrl+1",
"command": "workbench.action.focusFirstEditorGroup",
"when": "editorFocus"
},
{
"mac": "ctrl+2",
"win": "ctrl+2",
"linux": "ctrl+2",
"key": "ctrl+2",
"command": "workbench.action.focusSecondEditorGroup",
"when": "editorFocus"
},
{
"mac": "ctrl+3",
"win": "ctrl+3",
"linux": "ctrl+3",
"key": "ctrl+3",
"command": "workbench.action.focusThirdEditorGroup",
"when": "editorFocus"
},
{
"mac": "cmd+p",
"win": "ctrl+p",
"linux": "ctrl+p",
"key": "ctrl+p",
"command": "workbench.action.quickOpenPreviousEditor"
},
{
"mac": "cmd+k cmd+k",
"win": "ctrl+k ctrl+k",
"linux": "ctrl+k ctrl+k",
"command": "deleteAllRight",
"key": "ctrl+k ctrl+k",
"when": "editorTextFocus && !editorReadonly"
2018-04-15 20:16:46 +03:00
},
{
"mac": "cmd+shift+space",
"win": "ctrl+shift+space",
"linux": "ctrl+shift+space",
"command": "editor.action.smartSelect.grow",
"key": "ctrl+shift+space",
"when": "editorTextFocus"
}
2018-04-15 20:16:46 +03:00
]
2016-10-20 03:07:54 +03:00
}
}