2018-05-31 16:13:45 +02:00
|
|
|
{
|
|
|
|
|
"name": "vim",
|
|
|
|
|
"displayName": "vim",
|
|
|
|
|
"description": "vim sample extension",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-05-31 16:13:45 +02:00
|
|
|
"engines": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode": "^1.32.0"
|
2018-05-31 16:13:45 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"*"
|
|
|
|
|
],
|
2018-12-17 10:21:13 -08:00
|
|
|
"main": "./out/extension.js",
|
2018-05-31 16:13:45 +02:00
|
|
|
"contributes": {
|
|
|
|
|
"keybindings": [
|
|
|
|
|
{
|
|
|
|
|
"command": "vim.goToNormalMode",
|
|
|
|
|
"key": "escape",
|
|
|
|
|
"when": "editorTextFocus && !vim.inNormalMode"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"command": "vim.clearInput",
|
|
|
|
|
"key": "escape",
|
|
|
|
|
"when": "editorTextFocus && vim.hasInput"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"command": "redo",
|
|
|
|
|
"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": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-30 18:28:15 -07:00
|
|
|
"compile": "tsc -p ./",
|
2020-05-29 13:12:13 -07:00
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -watch -p ./"
|
2018-05-31 16:13:45 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-04-14 18:01:21 -07:00
|
|
|
"@types/node": "^12.12.0",
|
2021-03-02 16:02:01 -08:00
|
|
|
"@types/vscode": "^1.32.0",
|
2021-03-02 15:59:42 -08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
|
|
|
|
"@typescript-eslint/parser": "^4.16.0",
|
|
|
|
|
"eslint": "^7.21.0",
|
2021-03-02 16:02:01 -08:00
|
|
|
"typescript": "^4.2.2"
|
2018-05-31 16:13:45 +02:00
|
|
|
}
|
|
|
|
|
}
|