-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
189 lines (189 loc) · 5.3 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
178
179
180
181
182
183
184
185
186
187
188
189
{
"name": "coc-lists",
"version": "1.5.1",
"description": "Basic list sources for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"list"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/coc-lists.git"
},
"scripts": {
"prepare": "node esbuild.js"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"session.directory": {
"type": "string",
"default": "",
"description": "Directory for store session files, default to ~/.vim/sessions when empty."
},
"session.restartOnSessionLoad": {
"type": "boolean",
"default": false,
"description": "Restart vim with cwd changed on session load, support neovim on iTerm2 only."
},
"session.saveOnVimLeave": {
"type": "boolean",
"default": true,
"description": "Save session on VimLeavePre."
},
"lists.disabledLists": {
"type": "array",
"default": [],
"description": "List names to disable form load.",
"items": {
"type": "string"
}
},
"list.source.files.command": {
"type": "string",
"default": "",
"description": "Command used for search for files"
},
"list.source.files.args": {
"type": "array",
"default": [],
"description": "Arguments for search command",
"items": {
"type": "string"
}
},
"list.source.files.excludePatterns": {
"type": "array",
"default": [],
"description": "Minimatch patterns that should be excluded.",
"items": {
"type": "string"
}
},
"list.source.files.filterByName": {
"type": "boolean",
"default": false,
"description": "Filter files by name only"
},
"list.source.mru.maxLength": {
"type": "number",
"default": 1000,
"description": "Max length of mru list."
},
"list.source.mru.ignoreGitIgnore": {
"type": "boolean",
"default": false,
"description": "Ignore git ignored files."
},
"list.source.mru.excludePatterns": {
"type": "array",
"default": [
"**/.git/*",
"/tmp/*"
],
"description": "Minimatch patterns that should be excluded.",
"items": {
"type": "string"
}
},
"list.source.mru.filterByName": {
"type": "boolean",
"default": false,
"description": "Filter files by name only"
},
"list.source.grep.useLiteral": {
"type": "boolean",
"default": true,
"description": "Use literal match unless specified regex options, default: true."
},
"list.source.grep.command": {
"type": "string",
"default": "rg",
"description": "Command used for grep, default to 'rg'.",
"enum": [
"rg",
"ag"
]
},
"list.source.grep.maxColumns": {
"type": "number",
"default": 300,
"description": "Don't print lines longer than this limit in bytes, ripgrep only."
},
"list.source.grep.maxLines": {
"type": "number",
"default": 0,
"description": "Limit the number of matching lines in interactive mode, 0 is not limited."
},
"list.source.tags.command": {
"type": "string",
"default": "ctags -R .",
"description": "Command used for generate tags."
},
"list.source.grep.args": {
"type": "array",
"default": [],
"description": "Arguments for grep command, always used for grep",
"items": {
"type": "string"
}
},
"list.source.grep.excludePatterns": {
"type": "array",
"default": [],
"description": "Minimatch patterns of files that should be excluded, use .ignore file is recommended.",
"items": {
"type": "string"
}
}
}
},
"commands": [
{
"command": "session.save",
"title": "Save current vim state to session file."
},
{
"command": "session.load",
"title": "Load session by name."
},
{
"command": "session.restart",
"title": "Restart vim with current session."
},
{
"command": "mru.validate",
"title": "Validate mru files list, which remove files that doesn't exist."
}
]
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/find-up": "^4.0.0",
"@types/minimatch": "^3.0.3",
"@types/node": "10.12.0",
"@types/which": "^1.3.2",
"coc.nvim": "^0.0.81-next.1",
"colors": "^1.4.0",
"esbuild": "^0.8.29",
"find-up": "^5.0.0",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"typescript": "^4.1.3",
"vscode-uri": "^2.1.2",
"which": "^2.0.2"
},
"dependencies": {}
}