forked from jpotterm/vscode-simple-vim
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
156 lines (156 loc) · 5.33 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "multiline-vim",
"displayName": "MultiLine Vim",
"description": "Vim extension for VSCode with proper multiline support. Forked from jpotterm/vscode-simple-vim",
"version": "0.0.7",
"license": "MIT",
"publisher": "abuisman",
"repository": {
"type": "git",
"url": "https://github.com/abuisman/vscode-simple-vim"
},
"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"
},
{
"key": "down",
"command": "cursorDownSelect",
"when": "editorTextFocus && extension.simpleVim.visualMode"
},
{
"key": "left",
"command": "cursorLeftSelect",
"when": "editorTextFocus && extension.simpleVim.visualMode"
},
{
"key": "right",
"command": "cursorRightSelect",
"when": "editorTextFocus && extension.simpleVim.visualMode"
},
{
"key": "up",
"command": "cursorUpSelect",
"when": "editorTextFocus && extension.simpleVim.visualMode"
}
],
"configuration": {
"type": "object",
"title": "SimpleVim Configuration",
"properties": {
"simpleVim.yankHighlightBackgroundColor": {
"type": "string",
"default": "#F8F3AB",
"description": "Background color that flashes to show the range when yanking."
},
"simpleVim.insertModeCursorStyle": {
"type": "string",
"enum": [
"line",
"block",
"underline",
"lineThin",
"blockOutline",
"underlineThin"
],
"default": "line",
"description": "Cursor style for editor when in INSERT mode."
},
"simpleVim.normalModeCursorStyle": {
"type": "string",
"enum": [
"line",
"block",
"underline",
"lineThin",
"blockOutline",
"underlineThin"
],
"default": "blockOutline",
"description": "Cursor style for editor when in NORMAL mode."
},
"simpleVim.visualModeCursorStyle": {
"type": "string",
"enum": [
"line",
"block",
"underline",
"lineThin",
"blockOutline",
"underlineThin"
],
"default": "block",
"description": "Cursor style for editor when in VISUAL mode."
},
"simpleVim.visualLineModeCursorStyle": {
"type": "string",
"enum": [
"line",
"block",
"underline",
"lineThin",
"blockOutline",
"underlineThin"
],
"default": "block",
"description": "Cursor style for editor when in VISUAL LINE mode."
}
}
}
},
"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.17.21",
"tslint": "^5.20.1",
"typescript": "^2.9.2",
"vsce": "^1.75.0",
"vscode": "^1.1.37"
},
"dependencies": {
"global": "^4.4.0"
}
}