mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Support scroll commands
This commit is contained in:
@ -28,6 +28,30 @@
|
||||
"key": "ctrl+r",
|
||||
"mac": "cmd+r",
|
||||
"when": "editorTextFocus"
|
||||
},{
|
||||
"command": "e",
|
||||
"key": "ctrl+e",
|
||||
"when": "editorTextFocus && vim.inNormalMode"
|
||||
},{
|
||||
"command": "d",
|
||||
"key": "ctrl+d",
|
||||
"when": "editorTextFocus && vim.inNormalMode"
|
||||
},{
|
||||
"command": "f",
|
||||
"key": "ctrl+f",
|
||||
"when": "editorTextFocus && vim.inNormalMode"
|
||||
},{
|
||||
"command": "y",
|
||||
"key": "ctrl+y",
|
||||
"when": "editorTextFocus && vim.inNormalMode"
|
||||
},{
|
||||
"command": "u",
|
||||
"key": "ctrl+u",
|
||||
"when": "editorTextFocus && vim.inNormalMode"
|
||||
},{
|
||||
"command": "b",
|
||||
"key": "ctrl+b",
|
||||
"when": "editorTextFocus && vim.inNormalMode"
|
||||
}]
|
||||
},
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user