forked from aioutecism/amVim-for-VSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
177 lines (168 loc) · 12.7 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "amvim",
"version": "0.1.3-pre",
"publisher": "auiworks",
"icon": "images/icon.png",
"displayName": "amVim Beta",
"description": "The Vim mode for Visual Studio Code that works as expected.",
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"keywords": [
"vim",
"vintage",
"keybinding",
"mode"
],
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/aioutecism/amVim-for-VSCode.git"
},
"bugs": {
"url": "https://github.com/aioutecism/amVim-for-VSCode/issues"
},
"homepage": "https://github.com/aioutecism/amVim-for-VSCode#readme",
"author": "aioutecism",
"license": "ISC",
"engines": {
"vscode": "^0.10.8"
},
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "amVim configuration",
"properties": {
"amVim.bindCtrlC": {
"type": "boolean",
"default": false,
"description": "Bind `ctrl+c` as the same behaviour in Vim."
}
}
},
"keybindings": [
{ "command": "vim.a", "key": "a", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.b", "key": "b", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.c", "key": "c", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.d", "key": "d", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.e", "key": "e", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.f", "key": "f", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.g", "key": "g", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.h", "key": "h", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.i", "key": "i", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.j", "key": "j", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.k", "key": "k", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.l", "key": "l", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.m", "key": "m", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.n", "key": "n", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.o", "key": "o", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.p", "key": "p", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.q", "key": "q", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.r", "key": "r", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.s", "key": "s", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.t", "key": "t", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.u", "key": "u", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.v", "key": "v", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.w", "key": "w", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.x", "key": "x", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.y", "key": "y", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.z", "key": "z", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.A", "key": "shift+a", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.B", "key": "shift+b", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.C", "key": "shift+c", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.D", "key": "shift+d", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.E", "key": "shift+e", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.F", "key": "shift+f", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.G", "key": "shift+g", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.H", "key": "shift+h", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.I", "key": "shift+i", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.J", "key": "shift+j", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.K", "key": "shift+k", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.L", "key": "shift+l", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.M", "key": "shift+m", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.N", "key": "shift+n", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.O", "key": "shift+o", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.P", "key": "shift+p", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.Q", "key": "shift+q", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.R", "key": "shift+r", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.S", "key": "shift+s", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.T", "key": "shift+t", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.U", "key": "shift+u", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.V", "key": "shift+v", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.W", "key": "shift+w", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.X", "key": "shift+x", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.Y", "key": "shift+y", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.Z", "key": "shift+z", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.1", "key": "1", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.2", "key": "2", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.3", "key": "3", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.4", "key": "4", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.5", "key": "5", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.6", "key": "6", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.7", "key": "7", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.8", "key": "8", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.9", "key": "9", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.0", "key": "0", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.!", "key": "shift+1", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.@", "key": "shift+2", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.#", "key": "shift+3", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.$", "key": "shift+4", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.%", "key": "shift+5", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.^", "key": "shift+6", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.&", "key": "shift+7", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.*", "key": "shift+8", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.(", "key": "shift+9", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.)", "key": "shift+0", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.`", "key": "`", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.-", "key": "-", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.=", "key": "=", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.[", "key": "[", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.]", "key": "]", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.\\", "key": "\\", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.;", "key": ";", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.'", "key": "'", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.,", "key": ",", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim..", "key": ".", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim./", "key": "/", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.~", "key": "shift+`", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim._", "key": "shift+-", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.+", "key": "shift+=", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.{", "key": "shift+[", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.}", "key": "shift+]", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.|", "key": "shift+\\", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.:", "key": "shift+;", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.\"", "key": "shift+'", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.<", "key": "shift+,", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.>", "key": "shift+.", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.?", "key": "shift+/", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.space", "key": "space", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.enter", "key": "enter", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.tab", "key": "tab", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.backspace", "key": "backspace", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.delete", "key": "delete", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.escape", "key": "escape", "when": "editorTextFocus" },
{ "command": "vim.shift+enter", "key": "shift+enter", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.alt+b", "key": "alt+b", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.alt+w", "key": "alt+w", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.ctrl+c", "key": "ctrl+c", "when": "editorTextFocus" },
{ "command": "vim.ctrl+r", "key": "ctrl+r", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.ctrl+u", "key": "ctrl+u", "when": "editorTextFocus && !suggestWidgetVisible" },
{ "command": "vim.ctrl+w", "key": "ctrl+w", "when": "editorTextFocus && !suggestWidgetVisible" }
]
},
"activationEvents": [
"*"
],
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.7.5",
"vscode": "^0.11.1"
}
}