Fixes #19
This commit is contained in:
Родитель
a6bb1cf7b4
Коммит
56a9350bf0
|
@ -29,7 +29,7 @@ We may have missed a keyboard shortcut. If we did please help us out! It is very
|
|||
|
||||
1. Head over to our [GitHub repository](https://github.com/Microsoft/vscode-sublime-keybindings).
|
||||
2. Open the [`package.json` file](https://github.com/Microsoft/vscode-sublime-keybindings/blob/master/package.json).
|
||||
3. Add a JSON object to [`contributions.keybindings`](https://github.com/Microsoft/vscode-sublime-keybindings/blob/master/package.json#L25) as seen below.
|
||||
3. Add a JSON object to [`contributes.keybindings`](https://github.com/Microsoft/vscode-sublime-keybindings/blob/master/package.json#L25) as seen below.
|
||||
4. Open a pull request.
|
||||
|
||||
```json
|
||||
|
|
34
package.json
34
package.json
|
@ -2,7 +2,7 @@
|
|||
"name": "sublime-keybindings",
|
||||
"displayName": "Sublime Text Keymap",
|
||||
"description": "Popular Sublime Text keybindings for VS Code.",
|
||||
"version": "1.5.12",
|
||||
"version": "1.6.0",
|
||||
"publisher": "ms-vscode",
|
||||
"engines": {
|
||||
"vscode": "^1.6.0"
|
||||
|
@ -389,6 +389,38 @@
|
|||
"linux": "ctrl+shift+r",
|
||||
"key": "ctrl+shift+r",
|
||||
"command": "workbench.action.showAllSymbols"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче