-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
80 lines (80 loc) · 2.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "simple-vim",
"displayName": "Simple Vim",
"description": "Vim extension for VSCode",
"version": "0.0.5",
"license": "MIT",
"publisher": "jpotterm",
"repository": {
"type": "git",
"url": "https://github.com/jpotterm/vscode-simple-vim.git"
},
"engines": {
"vscode": "^1.22.2"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"key": "Escape",
"command": "extension.simpleVim.escapeKey",
"when": "editorTextFocus"
},
{
"key": "ctrl+r",
"command": "redo",
"when": "editorTextFocus && !extension.simpleVim.insertMode"
},
{
"key": "ctrl+d",
"command": "extension.simpleVim.scrollDownHalfPage",
"when": "editorTextFocus && !extension.simpleVim.insertMode"
},
{
"key": "ctrl+u",
"command": "extension.simpleVim.scrollUpHalfPage",
"when": "editorTextFocus && !extension.simpleVim.insertMode"
},
{
"key": "ctrl+f",
"command": "extension.simpleVim.scrollDownPage",
"when": "editorTextFocus && !extension.simpleVim.insertMode"
},
{
"key": "ctrl+b",
"command": "extension.simpleVim.scrollUpPage",
"when": "editorTextFocus && !extension.simpleVim.insertMode"
}
],
"configuration": {
"type": "object",
"title": "SimpleVim Configuration",
"properties": {
"simpleVim.yankHighlightBackgroundColor": {
"type": "string",
"default": "#F8F3AB",
"description": "Background color that flashes to show the range when yanking."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint -c tslint.json 'src/**/*.ts' --exclude 'src/test/*.ts'"
},
"devDependencies": {
"@types/node": "^10.5.1",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"vscode": "^1.1.18"
}
}