{ "name": "vim", "displayName": "vim", "description": "vim sample extension", "version": "0.0.1", "publisher": "vscode-samples", "private": true, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Microsoft/vscode-extension-samples" }, "engines": { "vscode": "^1.32.0" }, "categories": [ "Other" ], "activationEvents": [ "*" ], "main": "./out/extension.js", "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": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "lint": "eslint . --ext .ts,.tsx", "watch": "tsc -watch -p ./" }, "devDependencies": { "@types/node": "^12.12.0", "@types/vscode": "^1.32.0", "@typescript-eslint/eslint-plugin": "^4.16.0", "@typescript-eslint/parser": "^4.16.0", "eslint": "^7.21.0", "typescript": "^4.6.3" } }