@oh-my-pi/pi-coding-agent 14.4.0 → 14.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/package.json +7 -7
- package/src/config/prompt-templates.ts +1 -1
- package/src/config/settings-schema.ts +1 -1
- package/src/edit/line-hash.ts +13 -10
- package/src/edit/modes/atom.ts +264 -29
- package/src/edit/modes/hashline.ts +17 -22
- package/src/lsp/defaults.json +142 -652
- package/src/modes/components/session-selector.ts +3 -3
- package/src/prompts/tools/ast-edit.md +1 -1
- package/src/prompts/tools/ast-grep.md +1 -0
- package/src/prompts/tools/atom.md +29 -38
- package/src/prompts/tools/grep.md +2 -2
- package/src/prompts/tools/read.md +1 -1
- package/src/session/session-manager.ts +4 -1
- package/src/tools/grep.ts +2 -2
- package/src/tools/match-line-format.ts +3 -3
- package/src/tools/read.ts +1 -5
- package/src/tools/write.ts +2 -2
package/src/lsp/defaults.json
CHANGED
|
@@ -2,13 +2,8 @@
|
|
|
2
2
|
"rust-analyzer": {
|
|
3
3
|
"command": "rust-analyzer",
|
|
4
4
|
"args": [],
|
|
5
|
-
"fileTypes": [
|
|
6
|
-
|
|
7
|
-
],
|
|
8
|
-
"rootMarkers": [
|
|
9
|
-
"Cargo.toml",
|
|
10
|
-
"rust-analyzer.toml"
|
|
11
|
-
],
|
|
5
|
+
"fileTypes": [".rs"],
|
|
6
|
+
"rootMarkers": ["Cargo.toml", "rust-analyzer.toml"],
|
|
12
7
|
"initOptions": {},
|
|
13
8
|
"settings": {},
|
|
14
9
|
"capabilities": {
|
|
@@ -21,70 +16,27 @@
|
|
|
21
16
|
},
|
|
22
17
|
"tlaplus": {
|
|
23
18
|
"command": "tlapm_lsp",
|
|
24
|
-
"args": [
|
|
25
|
-
|
|
26
|
-
]
|
|
27
|
-
"fileTypes": [
|
|
28
|
-
".tla",
|
|
29
|
-
".tlaplus"
|
|
30
|
-
],
|
|
31
|
-
"rootMarkers": [
|
|
32
|
-
"*.tla"
|
|
33
|
-
]
|
|
19
|
+
"args": ["--stdio"],
|
|
20
|
+
"fileTypes": [".tla", ".tlaplus"],
|
|
21
|
+
"rootMarkers": ["*.tla"]
|
|
34
22
|
},
|
|
35
23
|
"clangd": {
|
|
36
24
|
"command": "clangd",
|
|
37
|
-
"args": [
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"--header-insertion=iwyu"
|
|
41
|
-
],
|
|
42
|
-
"fileTypes": [
|
|
43
|
-
".c",
|
|
44
|
-
".cpp",
|
|
45
|
-
".cc",
|
|
46
|
-
".cxx",
|
|
47
|
-
".h",
|
|
48
|
-
".hpp",
|
|
49
|
-
".hxx",
|
|
50
|
-
".m",
|
|
51
|
-
".mm"
|
|
52
|
-
],
|
|
53
|
-
"rootMarkers": [
|
|
54
|
-
"compile_commands.json",
|
|
55
|
-
"CMakeLists.txt",
|
|
56
|
-
".clangd",
|
|
57
|
-
".clang-format",
|
|
58
|
-
"Makefile"
|
|
59
|
-
]
|
|
25
|
+
"args": ["--background-index", "--clang-tidy", "--header-insertion=iwyu"],
|
|
26
|
+
"fileTypes": [".c", ".cpp", ".cc", ".cxx", ".h", ".hpp", ".hxx", ".m", ".mm"],
|
|
27
|
+
"rootMarkers": ["compile_commands.json", "CMakeLists.txt", ".clangd", ".clang-format", "Makefile"]
|
|
60
28
|
},
|
|
61
29
|
"zls": {
|
|
62
30
|
"command": "zls",
|
|
63
31
|
"args": [],
|
|
64
|
-
"fileTypes": [
|
|
65
|
-
|
|
66
|
-
],
|
|
67
|
-
"rootMarkers": [
|
|
68
|
-
"build.zig",
|
|
69
|
-
"build.zig.zon",
|
|
70
|
-
"zls.json"
|
|
71
|
-
]
|
|
32
|
+
"fileTypes": [".zig"],
|
|
33
|
+
"rootMarkers": ["build.zig", "build.zig.zon", "zls.json"]
|
|
72
34
|
},
|
|
73
35
|
"gopls": {
|
|
74
36
|
"command": "gopls",
|
|
75
|
-
"args": [
|
|
76
|
-
|
|
77
|
-
],
|
|
78
|
-
"fileTypes": [
|
|
79
|
-
".go",
|
|
80
|
-
".mod",
|
|
81
|
-
".sum"
|
|
82
|
-
],
|
|
83
|
-
"rootMarkers": [
|
|
84
|
-
"go.mod",
|
|
85
|
-
"go.work",
|
|
86
|
-
"go.sum"
|
|
87
|
-
],
|
|
37
|
+
"args": ["serve"],
|
|
38
|
+
"fileTypes": [".go", ".mod", ".sum"],
|
|
39
|
+
"rootMarkers": ["go.mod", "go.work", "go.sum"],
|
|
88
40
|
"settings": {
|
|
89
41
|
"gopls": {
|
|
90
42
|
"analyses": {
|
|
@@ -98,22 +50,9 @@
|
|
|
98
50
|
},
|
|
99
51
|
"typescript-language-server": {
|
|
100
52
|
"command": "typescript-language-server",
|
|
101
|
-
"args": [
|
|
102
|
-
|
|
103
|
-
],
|
|
104
|
-
"fileTypes": [
|
|
105
|
-
".ts",
|
|
106
|
-
".tsx",
|
|
107
|
-
".js",
|
|
108
|
-
".jsx",
|
|
109
|
-
".mjs",
|
|
110
|
-
".cjs"
|
|
111
|
-
],
|
|
112
|
-
"rootMarkers": [
|
|
113
|
-
"package.json",
|
|
114
|
-
"tsconfig.json",
|
|
115
|
-
"jsconfig.json"
|
|
116
|
-
],
|
|
53
|
+
"args": ["--stdio"],
|
|
54
|
+
"fileTypes": [".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs"],
|
|
55
|
+
"rootMarkers": ["package.json", "tsconfig.json", "jsconfig.json"],
|
|
117
56
|
"initOptions": {
|
|
118
57
|
"hostInfo": "omp-coding-agent",
|
|
119
58
|
"preferences": {
|
|
@@ -125,40 +64,15 @@
|
|
|
125
64
|
},
|
|
126
65
|
"biome": {
|
|
127
66
|
"command": "biome",
|
|
128
|
-
"args": [
|
|
129
|
-
|
|
130
|
-
],
|
|
131
|
-
"fileTypes": [
|
|
132
|
-
".ts",
|
|
133
|
-
".tsx",
|
|
134
|
-
".js",
|
|
135
|
-
".jsx",
|
|
136
|
-
".mjs",
|
|
137
|
-
".cjs",
|
|
138
|
-
".json",
|
|
139
|
-
".jsonc"
|
|
140
|
-
],
|
|
141
|
-
"rootMarkers": [
|
|
142
|
-
"biome.json",
|
|
143
|
-
"biome.jsonc"
|
|
144
|
-
],
|
|
67
|
+
"args": ["lsp-proxy"],
|
|
68
|
+
"fileTypes": [".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs", ".json", ".jsonc"],
|
|
69
|
+
"rootMarkers": ["biome.json", "biome.jsonc"],
|
|
145
70
|
"isLinter": true
|
|
146
71
|
},
|
|
147
72
|
"eslint": {
|
|
148
73
|
"command": "vscode-eslint-language-server",
|
|
149
|
-
"args": [
|
|
150
|
-
|
|
151
|
-
],
|
|
152
|
-
"fileTypes": [
|
|
153
|
-
".ts",
|
|
154
|
-
".tsx",
|
|
155
|
-
".js",
|
|
156
|
-
".jsx",
|
|
157
|
-
".mjs",
|
|
158
|
-
".cjs",
|
|
159
|
-
".vue",
|
|
160
|
-
".svelte"
|
|
161
|
-
],
|
|
74
|
+
"args": ["--stdio"],
|
|
75
|
+
"fileTypes": [".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs", ".vue", ".svelte"],
|
|
162
76
|
"rootMarkers": [
|
|
163
77
|
".eslintrc",
|
|
164
78
|
".eslintrc.js",
|
|
@@ -175,20 +89,9 @@
|
|
|
175
89
|
},
|
|
176
90
|
"denols": {
|
|
177
91
|
"command": "deno",
|
|
178
|
-
"args": [
|
|
179
|
-
|
|
180
|
-
],
|
|
181
|
-
"fileTypes": [
|
|
182
|
-
".ts",
|
|
183
|
-
".tsx",
|
|
184
|
-
".js",
|
|
185
|
-
".jsx"
|
|
186
|
-
],
|
|
187
|
-
"rootMarkers": [
|
|
188
|
-
"deno.json",
|
|
189
|
-
"deno.jsonc",
|
|
190
|
-
"deno.lock"
|
|
191
|
-
],
|
|
92
|
+
"args": ["lsp"],
|
|
93
|
+
"fileTypes": [".ts", ".tsx", ".js", ".jsx"],
|
|
94
|
+
"rootMarkers": ["deno.json", "deno.jsonc", "deno.lock"],
|
|
192
95
|
"initOptions": {
|
|
193
96
|
"enable": true,
|
|
194
97
|
"lint": true,
|
|
@@ -197,140 +100,60 @@
|
|
|
197
100
|
},
|
|
198
101
|
"vscode-html-language-server": {
|
|
199
102
|
"command": "vscode-html-language-server",
|
|
200
|
-
"args": [
|
|
201
|
-
|
|
202
|
-
],
|
|
203
|
-
"fileTypes": [
|
|
204
|
-
".html",
|
|
205
|
-
".htm"
|
|
206
|
-
],
|
|
207
|
-
"rootMarkers": [
|
|
208
|
-
"package.json",
|
|
209
|
-
".git"
|
|
210
|
-
],
|
|
103
|
+
"args": ["--stdio"],
|
|
104
|
+
"fileTypes": [".html", ".htm"],
|
|
105
|
+
"rootMarkers": ["package.json", ".git"],
|
|
211
106
|
"initOptions": {
|
|
212
107
|
"provideFormatter": true
|
|
213
108
|
}
|
|
214
109
|
},
|
|
215
110
|
"vscode-css-language-server": {
|
|
216
111
|
"command": "vscode-css-language-server",
|
|
217
|
-
"args": [
|
|
218
|
-
|
|
219
|
-
],
|
|
220
|
-
"fileTypes": [
|
|
221
|
-
".css",
|
|
222
|
-
".scss",
|
|
223
|
-
".sass",
|
|
224
|
-
".less"
|
|
225
|
-
],
|
|
226
|
-
"rootMarkers": [
|
|
227
|
-
"package.json",
|
|
228
|
-
".git"
|
|
229
|
-
],
|
|
112
|
+
"args": ["--stdio"],
|
|
113
|
+
"fileTypes": [".css", ".scss", ".sass", ".less"],
|
|
114
|
+
"rootMarkers": ["package.json", ".git"],
|
|
230
115
|
"initOptions": {
|
|
231
116
|
"provideFormatter": true
|
|
232
117
|
}
|
|
233
118
|
},
|
|
234
119
|
"vscode-json-language-server": {
|
|
235
120
|
"command": "vscode-json-language-server",
|
|
236
|
-
"args": [
|
|
237
|
-
|
|
238
|
-
],
|
|
239
|
-
"fileTypes": [
|
|
240
|
-
".json",
|
|
241
|
-
".jsonc"
|
|
242
|
-
],
|
|
243
|
-
"rootMarkers": [
|
|
244
|
-
"package.json",
|
|
245
|
-
".git"
|
|
246
|
-
],
|
|
121
|
+
"args": ["--stdio"],
|
|
122
|
+
"fileTypes": [".json", ".jsonc"],
|
|
123
|
+
"rootMarkers": ["package.json", ".git"],
|
|
247
124
|
"initOptions": {
|
|
248
125
|
"provideFormatter": true
|
|
249
126
|
}
|
|
250
127
|
},
|
|
251
128
|
"tailwindcss": {
|
|
252
129
|
"command": "tailwindcss-language-server",
|
|
253
|
-
"args": [
|
|
254
|
-
|
|
255
|
-
]
|
|
256
|
-
"fileTypes": [
|
|
257
|
-
".html",
|
|
258
|
-
".css",
|
|
259
|
-
".scss",
|
|
260
|
-
".js",
|
|
261
|
-
".jsx",
|
|
262
|
-
".ts",
|
|
263
|
-
".tsx",
|
|
264
|
-
".vue",
|
|
265
|
-
".svelte"
|
|
266
|
-
],
|
|
267
|
-
"rootMarkers": [
|
|
268
|
-
"tailwind.config.js",
|
|
269
|
-
"tailwind.config.ts",
|
|
270
|
-
"tailwind.config.mjs",
|
|
271
|
-
"tailwind.config.cjs"
|
|
272
|
-
]
|
|
130
|
+
"args": ["--stdio"],
|
|
131
|
+
"fileTypes": [".html", ".css", ".scss", ".js", ".jsx", ".ts", ".tsx", ".vue", ".svelte"],
|
|
132
|
+
"rootMarkers": ["tailwind.config.js", "tailwind.config.ts", "tailwind.config.mjs", "tailwind.config.cjs"]
|
|
273
133
|
},
|
|
274
134
|
"svelte": {
|
|
275
135
|
"command": "svelteserver",
|
|
276
|
-
"args": [
|
|
277
|
-
|
|
278
|
-
]
|
|
279
|
-
"fileTypes": [
|
|
280
|
-
".svelte"
|
|
281
|
-
],
|
|
282
|
-
"rootMarkers": [
|
|
283
|
-
"svelte.config.js",
|
|
284
|
-
"svelte.config.mjs",
|
|
285
|
-
"package.json"
|
|
286
|
-
]
|
|
136
|
+
"args": ["--stdio"],
|
|
137
|
+
"fileTypes": [".svelte"],
|
|
138
|
+
"rootMarkers": ["svelte.config.js", "svelte.config.mjs", "package.json"]
|
|
287
139
|
},
|
|
288
140
|
"vue-language-server": {
|
|
289
141
|
"command": "vue-language-server",
|
|
290
|
-
"args": [
|
|
291
|
-
|
|
292
|
-
]
|
|
293
|
-
"fileTypes": [
|
|
294
|
-
".vue"
|
|
295
|
-
],
|
|
296
|
-
"rootMarkers": [
|
|
297
|
-
"vue.config.js",
|
|
298
|
-
"nuxt.config.js",
|
|
299
|
-
"nuxt.config.ts",
|
|
300
|
-
"package.json"
|
|
301
|
-
]
|
|
142
|
+
"args": ["--stdio"],
|
|
143
|
+
"fileTypes": [".vue"],
|
|
144
|
+
"rootMarkers": ["vue.config.js", "nuxt.config.js", "nuxt.config.ts", "package.json"]
|
|
302
145
|
},
|
|
303
146
|
"astro": {
|
|
304
147
|
"command": "astro-ls",
|
|
305
|
-
"args": [
|
|
306
|
-
|
|
307
|
-
]
|
|
308
|
-
"fileTypes": [
|
|
309
|
-
".astro"
|
|
310
|
-
],
|
|
311
|
-
"rootMarkers": [
|
|
312
|
-
"astro.config.mjs",
|
|
313
|
-
"astro.config.js",
|
|
314
|
-
"astro.config.ts"
|
|
315
|
-
]
|
|
148
|
+
"args": ["--stdio"],
|
|
149
|
+
"fileTypes": [".astro"],
|
|
150
|
+
"rootMarkers": ["astro.config.mjs", "astro.config.js", "astro.config.ts"]
|
|
316
151
|
},
|
|
317
152
|
"pyright": {
|
|
318
153
|
"command": "pyright-langserver",
|
|
319
|
-
"args": [
|
|
320
|
-
|
|
321
|
-
],
|
|
322
|
-
"fileTypes": [
|
|
323
|
-
".py",
|
|
324
|
-
".pyi"
|
|
325
|
-
],
|
|
326
|
-
"rootMarkers": [
|
|
327
|
-
"pyproject.toml",
|
|
328
|
-
"pyrightconfig.json",
|
|
329
|
-
"setup.py",
|
|
330
|
-
"setup.cfg",
|
|
331
|
-
"requirements.txt",
|
|
332
|
-
"Pipfile"
|
|
333
|
-
],
|
|
154
|
+
"args": ["--stdio"],
|
|
155
|
+
"fileTypes": [".py", ".pyi"],
|
|
156
|
+
"rootMarkers": ["pyproject.toml", "pyrightconfig.json", "setup.py", "setup.cfg", "requirements.txt", "Pipfile"],
|
|
334
157
|
"settings": {
|
|
335
158
|
"python": {
|
|
336
159
|
"analysis": {
|
|
@@ -343,19 +166,9 @@
|
|
|
343
166
|
},
|
|
344
167
|
"basedpyright": {
|
|
345
168
|
"command": "basedpyright-langserver",
|
|
346
|
-
"args": [
|
|
347
|
-
|
|
348
|
-
],
|
|
349
|
-
"fileTypes": [
|
|
350
|
-
".py",
|
|
351
|
-
".pyi"
|
|
352
|
-
],
|
|
353
|
-
"rootMarkers": [
|
|
354
|
-
"pyproject.toml",
|
|
355
|
-
"pyrightconfig.json",
|
|
356
|
-
"setup.py",
|
|
357
|
-
"requirements.txt"
|
|
358
|
-
],
|
|
169
|
+
"args": ["--stdio"],
|
|
170
|
+
"fileTypes": [".py", ".pyi"],
|
|
171
|
+
"rootMarkers": ["pyproject.toml", "pyrightconfig.json", "setup.py", "requirements.txt"],
|
|
359
172
|
"settings": {
|
|
360
173
|
"basedpyright": {
|
|
361
174
|
"analysis": {
|
|
@@ -369,78 +182,33 @@
|
|
|
369
182
|
"pylsp": {
|
|
370
183
|
"command": "pylsp",
|
|
371
184
|
"args": [],
|
|
372
|
-
"fileTypes": [
|
|
373
|
-
|
|
374
|
-
],
|
|
375
|
-
"rootMarkers": [
|
|
376
|
-
"pyproject.toml",
|
|
377
|
-
"setup.py",
|
|
378
|
-
"setup.cfg",
|
|
379
|
-
"requirements.txt",
|
|
380
|
-
"Pipfile"
|
|
381
|
-
]
|
|
185
|
+
"fileTypes": [".py"],
|
|
186
|
+
"rootMarkers": ["pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile"]
|
|
382
187
|
},
|
|
383
188
|
"ruff": {
|
|
384
189
|
"command": "ruff",
|
|
385
|
-
"args": [
|
|
386
|
-
|
|
387
|
-
],
|
|
388
|
-
"fileTypes": [
|
|
389
|
-
".py",
|
|
390
|
-
".pyi"
|
|
391
|
-
],
|
|
392
|
-
"rootMarkers": [
|
|
393
|
-
"pyproject.toml",
|
|
394
|
-
"ruff.toml",
|
|
395
|
-
".ruff.toml"
|
|
396
|
-
],
|
|
190
|
+
"args": ["server"],
|
|
191
|
+
"fileTypes": [".py", ".pyi"],
|
|
192
|
+
"rootMarkers": ["pyproject.toml", "ruff.toml", ".ruff.toml"],
|
|
397
193
|
"isLinter": true
|
|
398
194
|
},
|
|
399
195
|
"jdtls": {
|
|
400
196
|
"command": "jdtls",
|
|
401
197
|
"args": [],
|
|
402
|
-
"fileTypes": [
|
|
403
|
-
|
|
404
|
-
],
|
|
405
|
-
"rootMarkers": [
|
|
406
|
-
"pom.xml",
|
|
407
|
-
"build.gradle",
|
|
408
|
-
"build.gradle.kts",
|
|
409
|
-
"settings.gradle",
|
|
410
|
-
".project"
|
|
411
|
-
]
|
|
198
|
+
"fileTypes": [".java"],
|
|
199
|
+
"rootMarkers": ["pom.xml", "build.gradle", "build.gradle.kts", "settings.gradle", ".project"]
|
|
412
200
|
},
|
|
413
201
|
"kotlin-lsp": {
|
|
414
202
|
"command": "kotlin-lsp",
|
|
415
|
-
"args": [
|
|
416
|
-
|
|
417
|
-
]
|
|
418
|
-
"fileTypes": [
|
|
419
|
-
".kt",
|
|
420
|
-
".kts"
|
|
421
|
-
],
|
|
422
|
-
"rootMarkers": [
|
|
423
|
-
"build.gradle",
|
|
424
|
-
"build.gradle.kts",
|
|
425
|
-
"pom.xml",
|
|
426
|
-
"settings.gradle",
|
|
427
|
-
"settings.gradle.kts"
|
|
428
|
-
]
|
|
203
|
+
"args": ["--stdio"],
|
|
204
|
+
"fileTypes": [".kt", ".kts"],
|
|
205
|
+
"rootMarkers": ["build.gradle", "build.gradle.kts", "pom.xml", "settings.gradle", "settings.gradle.kts"]
|
|
429
206
|
},
|
|
430
207
|
"metals": {
|
|
431
208
|
"command": "metals",
|
|
432
209
|
"args": [],
|
|
433
|
-
"fileTypes": [
|
|
434
|
-
|
|
435
|
-
".sbt",
|
|
436
|
-
".sc"
|
|
437
|
-
],
|
|
438
|
-
"rootMarkers": [
|
|
439
|
-
"build.sbt",
|
|
440
|
-
"build.sc",
|
|
441
|
-
"build.gradle",
|
|
442
|
-
"pom.xml"
|
|
443
|
-
],
|
|
210
|
+
"fileTypes": [".scala", ".sbt", ".sc"],
|
|
211
|
+
"rootMarkers": ["build.sbt", "build.sc", "build.gradle", "pom.xml"],
|
|
444
212
|
"initOptions": {
|
|
445
213
|
"statusBarProvider": "show-message",
|
|
446
214
|
"isHttpEnabled": true
|
|
@@ -448,20 +216,9 @@
|
|
|
448
216
|
},
|
|
449
217
|
"hls": {
|
|
450
218
|
"command": "haskell-language-server-wrapper",
|
|
451
|
-
"args": [
|
|
452
|
-
|
|
453
|
-
],
|
|
454
|
-
"fileTypes": [
|
|
455
|
-
".hs",
|
|
456
|
-
".lhs"
|
|
457
|
-
],
|
|
458
|
-
"rootMarkers": [
|
|
459
|
-
"stack.yaml",
|
|
460
|
-
"cabal.project",
|
|
461
|
-
"hie.yaml",
|
|
462
|
-
"package.yaml",
|
|
463
|
-
"*.cabal"
|
|
464
|
-
],
|
|
219
|
+
"args": ["--lsp"],
|
|
220
|
+
"fileTypes": [".hs", ".lhs"],
|
|
221
|
+
"rootMarkers": ["stack.yaml", "cabal.project", "hie.yaml", "package.yaml", "*.cabal"],
|
|
465
222
|
"settings": {
|
|
466
223
|
"haskell": {
|
|
467
224
|
"formattingProvider": "ormolu",
|
|
@@ -472,32 +229,14 @@
|
|
|
472
229
|
"ocamllsp": {
|
|
473
230
|
"command": "ocamllsp",
|
|
474
231
|
"args": [],
|
|
475
|
-
"fileTypes": [
|
|
476
|
-
|
|
477
|
-
".mli",
|
|
478
|
-
".mll",
|
|
479
|
-
".mly"
|
|
480
|
-
],
|
|
481
|
-
"rootMarkers": [
|
|
482
|
-
"dune-project",
|
|
483
|
-
"dune-workspace",
|
|
484
|
-
"*.opam",
|
|
485
|
-
".ocamlformat"
|
|
486
|
-
]
|
|
232
|
+
"fileTypes": [".ml", ".mli", ".mll", ".mly"],
|
|
233
|
+
"rootMarkers": ["dune-project", "dune-workspace", "*.opam", ".ocamlformat"]
|
|
487
234
|
},
|
|
488
235
|
"elixirls": {
|
|
489
236
|
"command": "elixir-ls",
|
|
490
237
|
"args": [],
|
|
491
|
-
"fileTypes": [
|
|
492
|
-
|
|
493
|
-
".exs",
|
|
494
|
-
".heex",
|
|
495
|
-
".eex"
|
|
496
|
-
],
|
|
497
|
-
"rootMarkers": [
|
|
498
|
-
"mix.exs",
|
|
499
|
-
"mix.lock"
|
|
500
|
-
],
|
|
238
|
+
"fileTypes": [".ex", ".exs", ".heex", ".eex"],
|
|
239
|
+
"rootMarkers": ["mix.exs", "mix.lock"],
|
|
501
240
|
"settings": {
|
|
502
241
|
"elixirLS": {
|
|
503
242
|
"dialyzerEnabled": true,
|
|
@@ -508,43 +247,20 @@
|
|
|
508
247
|
"erlangls": {
|
|
509
248
|
"command": "erlang_ls",
|
|
510
249
|
"args": [],
|
|
511
|
-
"fileTypes": [
|
|
512
|
-
|
|
513
|
-
".hrl"
|
|
514
|
-
],
|
|
515
|
-
"rootMarkers": [
|
|
516
|
-
"rebar.config",
|
|
517
|
-
"erlang.mk",
|
|
518
|
-
"rebar.lock"
|
|
519
|
-
]
|
|
250
|
+
"fileTypes": [".erl", ".hrl"],
|
|
251
|
+
"rootMarkers": ["rebar.config", "erlang.mk", "rebar.lock"]
|
|
520
252
|
},
|
|
521
253
|
"gleam": {
|
|
522
254
|
"command": "gleam",
|
|
523
|
-
"args": [
|
|
524
|
-
|
|
525
|
-
]
|
|
526
|
-
"fileTypes": [
|
|
527
|
-
".gleam"
|
|
528
|
-
],
|
|
529
|
-
"rootMarkers": [
|
|
530
|
-
"gleam.toml"
|
|
531
|
-
]
|
|
255
|
+
"args": ["lsp"],
|
|
256
|
+
"fileTypes": [".gleam"],
|
|
257
|
+
"rootMarkers": ["gleam.toml"]
|
|
532
258
|
},
|
|
533
259
|
"solargraph": {
|
|
534
260
|
"command": "solargraph",
|
|
535
|
-
"args": [
|
|
536
|
-
|
|
537
|
-
],
|
|
538
|
-
"fileTypes": [
|
|
539
|
-
".rb",
|
|
540
|
-
".rake",
|
|
541
|
-
".gemspec"
|
|
542
|
-
],
|
|
543
|
-
"rootMarkers": [
|
|
544
|
-
"Gemfile",
|
|
545
|
-
".solargraph.yml",
|
|
546
|
-
"Rakefile"
|
|
547
|
-
],
|
|
261
|
+
"args": ["stdio"],
|
|
262
|
+
"fileTypes": [".rb", ".rake", ".gemspec"],
|
|
263
|
+
"rootMarkers": ["Gemfile", ".solargraph.yml", "Rakefile"],
|
|
548
264
|
"initOptions": {
|
|
549
265
|
"formatting": true
|
|
550
266
|
},
|
|
@@ -563,49 +279,24 @@
|
|
|
563
279
|
"ruby-lsp": {
|
|
564
280
|
"command": "ruby-lsp",
|
|
565
281
|
"args": [],
|
|
566
|
-
"fileTypes": [
|
|
567
|
-
|
|
568
|
-
".rake",
|
|
569
|
-
".gemspec",
|
|
570
|
-
".erb"
|
|
571
|
-
],
|
|
572
|
-
"rootMarkers": [
|
|
573
|
-
"Gemfile",
|
|
574
|
-
".ruby-version",
|
|
575
|
-
".ruby-gemset"
|
|
576
|
-
],
|
|
282
|
+
"fileTypes": [".rb", ".rake", ".gemspec", ".erb"],
|
|
283
|
+
"rootMarkers": ["Gemfile", ".ruby-version", ".ruby-gemset"],
|
|
577
284
|
"initOptions": {
|
|
578
285
|
"formatter": "auto"
|
|
579
286
|
}
|
|
580
287
|
},
|
|
581
288
|
"rubocop": {
|
|
582
289
|
"command": "rubocop",
|
|
583
|
-
"args": [
|
|
584
|
-
|
|
585
|
-
],
|
|
586
|
-
"fileTypes": [
|
|
587
|
-
".rb",
|
|
588
|
-
".rake"
|
|
589
|
-
],
|
|
590
|
-
"rootMarkers": [
|
|
591
|
-
".rubocop.yml",
|
|
592
|
-
"Gemfile"
|
|
593
|
-
],
|
|
290
|
+
"args": ["--lsp"],
|
|
291
|
+
"fileTypes": [".rb", ".rake"],
|
|
292
|
+
"rootMarkers": [".rubocop.yml", "Gemfile"],
|
|
594
293
|
"isLinter": true
|
|
595
294
|
},
|
|
596
295
|
"bashls": {
|
|
597
296
|
"command": "bash-language-server",
|
|
598
|
-
"args": [
|
|
599
|
-
|
|
600
|
-
],
|
|
601
|
-
"fileTypes": [
|
|
602
|
-
".sh",
|
|
603
|
-
".bash",
|
|
604
|
-
".zsh"
|
|
605
|
-
],
|
|
606
|
-
"rootMarkers": [
|
|
607
|
-
".git"
|
|
608
|
-
],
|
|
297
|
+
"args": ["start"],
|
|
298
|
+
"fileTypes": [".sh", ".bash", ".zsh"],
|
|
299
|
+
"rootMarkers": [".git"],
|
|
609
300
|
"settings": {
|
|
610
301
|
"bashIde": {
|
|
611
302
|
"globPattern": "*@(.sh|.inc|.bash|.command)"
|
|
@@ -615,25 +306,15 @@
|
|
|
615
306
|
"lua-language-server": {
|
|
616
307
|
"command": "lua-language-server",
|
|
617
308
|
"args": [],
|
|
618
|
-
"fileTypes": [
|
|
619
|
-
|
|
620
|
-
],
|
|
621
|
-
"rootMarkers": [
|
|
622
|
-
".luarc.json",
|
|
623
|
-
".luarc.jsonc",
|
|
624
|
-
".luacheckrc",
|
|
625
|
-
".stylua.toml",
|
|
626
|
-
"stylua.toml"
|
|
627
|
-
],
|
|
309
|
+
"fileTypes": [".lua"],
|
|
310
|
+
"rootMarkers": [".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml"],
|
|
628
311
|
"settings": {
|
|
629
312
|
"Lua": {
|
|
630
313
|
"runtime": {
|
|
631
314
|
"version": "LuaJIT"
|
|
632
315
|
},
|
|
633
316
|
"diagnostics": {
|
|
634
|
-
"globals": [
|
|
635
|
-
"vim"
|
|
636
|
-
]
|
|
317
|
+
"globals": ["vim"]
|
|
637
318
|
},
|
|
638
319
|
"workspace": {
|
|
639
320
|
"checkThirdParty": false
|
|
@@ -646,53 +327,21 @@
|
|
|
646
327
|
},
|
|
647
328
|
"intelephense": {
|
|
648
329
|
"command": "intelephense",
|
|
649
|
-
"args": [
|
|
650
|
-
|
|
651
|
-
]
|
|
652
|
-
"fileTypes": [
|
|
653
|
-
".php",
|
|
654
|
-
".phtml"
|
|
655
|
-
],
|
|
656
|
-
"rootMarkers": [
|
|
657
|
-
"composer.json",
|
|
658
|
-
"composer.lock",
|
|
659
|
-
".git"
|
|
660
|
-
]
|
|
330
|
+
"args": ["--stdio"],
|
|
331
|
+
"fileTypes": [".php", ".phtml"],
|
|
332
|
+
"rootMarkers": ["composer.json", "composer.lock", ".git"]
|
|
661
333
|
},
|
|
662
334
|
"phpactor": {
|
|
663
335
|
"command": "phpactor",
|
|
664
|
-
"args": [
|
|
665
|
-
|
|
666
|
-
]
|
|
667
|
-
"fileTypes": [
|
|
668
|
-
".php"
|
|
669
|
-
],
|
|
670
|
-
"rootMarkers": [
|
|
671
|
-
"composer.json",
|
|
672
|
-
".phpactor.json",
|
|
673
|
-
".phpactor.yml"
|
|
674
|
-
]
|
|
336
|
+
"args": ["language-server"],
|
|
337
|
+
"fileTypes": [".php"],
|
|
338
|
+
"rootMarkers": ["composer.json", ".phpactor.json", ".phpactor.yml"]
|
|
675
339
|
},
|
|
676
340
|
"omnisharp": {
|
|
677
341
|
"command": "omnisharp",
|
|
678
|
-
"args": [
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
"$PID",
|
|
682
|
-
"--encoding",
|
|
683
|
-
"utf-8",
|
|
684
|
-
"--languageserver"
|
|
685
|
-
],
|
|
686
|
-
"fileTypes": [
|
|
687
|
-
".cs",
|
|
688
|
-
".csx"
|
|
689
|
-
],
|
|
690
|
-
"rootMarkers": [
|
|
691
|
-
"*.sln",
|
|
692
|
-
"*.csproj",
|
|
693
|
-
"omnisharp.json",
|
|
694
|
-
".git"
|
|
695
|
-
],
|
|
342
|
+
"args": ["-z", "--hostPID", "$PID", "--encoding", "utf-8", "--languageserver"],
|
|
343
|
+
"fileTypes": [".cs", ".csx"],
|
|
344
|
+
"rootMarkers": ["*.sln", "*.csproj", "omnisharp.json", ".git"],
|
|
696
345
|
"settings": {
|
|
697
346
|
"FormattingOptions": {
|
|
698
347
|
"EnableEditorConfigSupport": true
|
|
@@ -704,16 +353,9 @@
|
|
|
704
353
|
},
|
|
705
354
|
"yamlls": {
|
|
706
355
|
"command": "yaml-language-server",
|
|
707
|
-
"args": [
|
|
708
|
-
|
|
709
|
-
],
|
|
710
|
-
"fileTypes": [
|
|
711
|
-
".yaml",
|
|
712
|
-
".yml"
|
|
713
|
-
],
|
|
714
|
-
"rootMarkers": [
|
|
715
|
-
".git"
|
|
716
|
-
],
|
|
356
|
+
"args": ["--stdio"],
|
|
357
|
+
"fileTypes": [".yaml", ".yml"],
|
|
358
|
+
"rootMarkers": [".git"],
|
|
717
359
|
"settings": {
|
|
718
360
|
"yaml": {
|
|
719
361
|
"validate": true,
|
|
@@ -730,115 +372,47 @@
|
|
|
730
372
|
}
|
|
731
373
|
}
|
|
732
374
|
},
|
|
733
|
-
"taplo": {
|
|
734
|
-
"command": "taplo",
|
|
735
|
-
"args": [
|
|
736
|
-
"lsp",
|
|
737
|
-
"stdio"
|
|
738
|
-
],
|
|
739
|
-
"fileTypes": [
|
|
740
|
-
".toml"
|
|
741
|
-
],
|
|
742
|
-
"rootMarkers": [
|
|
743
|
-
".taplo.toml",
|
|
744
|
-
"taplo.toml",
|
|
745
|
-
".git"
|
|
746
|
-
]
|
|
747
|
-
},
|
|
748
375
|
"terraformls": {
|
|
749
376
|
"command": "terraform-ls",
|
|
750
|
-
"args": [
|
|
751
|
-
|
|
752
|
-
]
|
|
753
|
-
"fileTypes": [
|
|
754
|
-
".tf",
|
|
755
|
-
".tfvars"
|
|
756
|
-
],
|
|
757
|
-
"rootMarkers": [
|
|
758
|
-
".terraform",
|
|
759
|
-
"terraform.tfstate",
|
|
760
|
-
"*.tf"
|
|
761
|
-
]
|
|
377
|
+
"args": ["serve"],
|
|
378
|
+
"fileTypes": [".tf", ".tfvars"],
|
|
379
|
+
"rootMarkers": [".terraform", "terraform.tfstate", "*.tf"]
|
|
762
380
|
},
|
|
763
381
|
"dockerls": {
|
|
764
382
|
"command": "docker-langserver",
|
|
765
|
-
"args": [
|
|
766
|
-
|
|
767
|
-
]
|
|
768
|
-
"fileTypes": [
|
|
769
|
-
".dockerfile",
|
|
770
|
-
"Dockerfile"
|
|
771
|
-
],
|
|
772
|
-
"rootMarkers": [
|
|
773
|
-
"Dockerfile",
|
|
774
|
-
"docker-compose.yml",
|
|
775
|
-
"docker-compose.yaml",
|
|
776
|
-
".dockerignore"
|
|
777
|
-
]
|
|
383
|
+
"args": ["--stdio"],
|
|
384
|
+
"fileTypes": [".dockerfile", "Dockerfile"],
|
|
385
|
+
"rootMarkers": ["Dockerfile", "docker-compose.yml", "docker-compose.yaml", ".dockerignore"]
|
|
778
386
|
},
|
|
779
387
|
"helm-ls": {
|
|
780
388
|
"command": "helm_ls",
|
|
781
|
-
"args": [
|
|
782
|
-
|
|
783
|
-
]
|
|
784
|
-
"fileTypes": [
|
|
785
|
-
".yaml",
|
|
786
|
-
".yml",
|
|
787
|
-
".tpl"
|
|
788
|
-
],
|
|
789
|
-
"rootMarkers": [
|
|
790
|
-
"Chart.yaml",
|
|
791
|
-
"Chart.yml"
|
|
792
|
-
]
|
|
389
|
+
"args": ["serve"],
|
|
390
|
+
"fileTypes": [".yaml", ".yml", ".tpl"],
|
|
391
|
+
"rootMarkers": ["Chart.yaml", "Chart.yml"]
|
|
793
392
|
},
|
|
794
393
|
"nixd": {
|
|
795
394
|
"command": "nixd",
|
|
796
395
|
"args": [],
|
|
797
|
-
"fileTypes": [
|
|
798
|
-
|
|
799
|
-
],
|
|
800
|
-
"rootMarkers": [
|
|
801
|
-
"flake.nix",
|
|
802
|
-
"default.nix",
|
|
803
|
-
"shell.nix"
|
|
804
|
-
]
|
|
396
|
+
"fileTypes": [".nix"],
|
|
397
|
+
"rootMarkers": ["flake.nix", "default.nix", "shell.nix"]
|
|
805
398
|
},
|
|
806
399
|
"nil": {
|
|
807
400
|
"command": "nil",
|
|
808
401
|
"args": [],
|
|
809
|
-
"fileTypes": [
|
|
810
|
-
|
|
811
|
-
],
|
|
812
|
-
"rootMarkers": [
|
|
813
|
-
"flake.nix",
|
|
814
|
-
"default.nix",
|
|
815
|
-
"shell.nix"
|
|
816
|
-
]
|
|
402
|
+
"fileTypes": [".nix"],
|
|
403
|
+
"rootMarkers": ["flake.nix", "default.nix", "shell.nix"]
|
|
817
404
|
},
|
|
818
405
|
"ols": {
|
|
819
406
|
"command": "ols",
|
|
820
407
|
"args": [],
|
|
821
|
-
"fileTypes": [
|
|
822
|
-
|
|
823
|
-
],
|
|
824
|
-
"rootMarkers": [
|
|
825
|
-
"ols.json",
|
|
826
|
-
".git"
|
|
827
|
-
]
|
|
408
|
+
"fileTypes": [".odin"],
|
|
409
|
+
"rootMarkers": ["ols.json", ".git"]
|
|
828
410
|
},
|
|
829
411
|
"dartls": {
|
|
830
412
|
"command": "dart",
|
|
831
|
-
"args": [
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
],
|
|
835
|
-
"fileTypes": [
|
|
836
|
-
".dart"
|
|
837
|
-
],
|
|
838
|
-
"rootMarkers": [
|
|
839
|
-
"pubspec.yaml",
|
|
840
|
-
"pubspec.lock"
|
|
841
|
-
],
|
|
413
|
+
"args": ["language-server", "--protocol=lsp"],
|
|
414
|
+
"fileTypes": [".dart"],
|
|
415
|
+
"rootMarkers": ["pubspec.yaml", "pubspec.lock"],
|
|
842
416
|
"initOptions": {
|
|
843
417
|
"closingLabels": true,
|
|
844
418
|
"flutterOutline": true,
|
|
@@ -847,45 +421,21 @@
|
|
|
847
421
|
},
|
|
848
422
|
"marksman": {
|
|
849
423
|
"command": "marksman",
|
|
850
|
-
"args": [
|
|
851
|
-
|
|
852
|
-
],
|
|
853
|
-
"fileTypes": [
|
|
854
|
-
".md",
|
|
855
|
-
".markdown"
|
|
856
|
-
],
|
|
857
|
-
"rootMarkers": [
|
|
858
|
-
".marksman.toml",
|
|
859
|
-
".git"
|
|
860
|
-
],
|
|
424
|
+
"args": ["server"],
|
|
425
|
+
"fileTypes": [".md", ".markdown"],
|
|
426
|
+
"rootMarkers": [".marksman.toml", ".git"],
|
|
861
427
|
"warmupTimeoutMs": 15000
|
|
862
428
|
},
|
|
863
429
|
"texlab": {
|
|
864
430
|
"command": "texlab",
|
|
865
431
|
"args": [],
|
|
866
|
-
"fileTypes": [
|
|
867
|
-
|
|
868
|
-
".bib",
|
|
869
|
-
".sty",
|
|
870
|
-
".cls"
|
|
871
|
-
],
|
|
872
|
-
"rootMarkers": [
|
|
873
|
-
".latexmkrc",
|
|
874
|
-
"latexmkrc",
|
|
875
|
-
".texlabroot",
|
|
876
|
-
"texlabroot",
|
|
877
|
-
"Tectonic.toml"
|
|
878
|
-
],
|
|
432
|
+
"fileTypes": [".tex", ".bib", ".sty", ".cls"],
|
|
433
|
+
"rootMarkers": [".latexmkrc", "latexmkrc", ".texlabroot", "texlabroot", "Tectonic.toml"],
|
|
879
434
|
"settings": {
|
|
880
435
|
"texlab": {
|
|
881
436
|
"build": {
|
|
882
437
|
"executable": "latexmk",
|
|
883
|
-
"args": [
|
|
884
|
-
"-pdf",
|
|
885
|
-
"-interaction=nonstopmode",
|
|
886
|
-
"-synctex=1",
|
|
887
|
-
"%f"
|
|
888
|
-
]
|
|
438
|
+
"args": ["-pdf", "-interaction=nonstopmode", "-synctex=1", "%f"]
|
|
889
439
|
},
|
|
890
440
|
"chktex": {
|
|
891
441
|
"onOpenAndSave": true
|
|
@@ -895,48 +445,21 @@
|
|
|
895
445
|
},
|
|
896
446
|
"graphql": {
|
|
897
447
|
"command": "graphql-lsp",
|
|
898
|
-
"args": [
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
"stream"
|
|
902
|
-
],
|
|
903
|
-
"fileTypes": [
|
|
904
|
-
".graphql",
|
|
905
|
-
".gql"
|
|
906
|
-
],
|
|
907
|
-
"rootMarkers": [
|
|
908
|
-
".graphqlrc",
|
|
909
|
-
".graphqlrc.json",
|
|
910
|
-
".graphqlrc.yml",
|
|
911
|
-
".graphqlrc.yaml",
|
|
912
|
-
"graphql.config.js"
|
|
913
|
-
]
|
|
448
|
+
"args": ["server", "-m", "stream"],
|
|
449
|
+
"fileTypes": [".graphql", ".gql"],
|
|
450
|
+
"rootMarkers": [".graphqlrc", ".graphqlrc.json", ".graphqlrc.yml", ".graphqlrc.yaml", "graphql.config.js"]
|
|
914
451
|
},
|
|
915
452
|
"prismals": {
|
|
916
453
|
"command": "prisma-language-server",
|
|
917
|
-
"args": [
|
|
918
|
-
|
|
919
|
-
]
|
|
920
|
-
"fileTypes": [
|
|
921
|
-
".prisma"
|
|
922
|
-
],
|
|
923
|
-
"rootMarkers": [
|
|
924
|
-
"schema.prisma",
|
|
925
|
-
"prisma/schema.prisma"
|
|
926
|
-
]
|
|
454
|
+
"args": ["--stdio"],
|
|
455
|
+
"fileTypes": [".prisma"],
|
|
456
|
+
"rootMarkers": ["schema.prisma", "prisma/schema.prisma"]
|
|
927
457
|
},
|
|
928
458
|
"vimls": {
|
|
929
459
|
"command": "vim-language-server",
|
|
930
|
-
"args": [
|
|
931
|
-
|
|
932
|
-
],
|
|
933
|
-
"fileTypes": [
|
|
934
|
-
".vim",
|
|
935
|
-
".vimrc"
|
|
936
|
-
],
|
|
937
|
-
"rootMarkers": [
|
|
938
|
-
".git"
|
|
939
|
-
],
|
|
460
|
+
"args": ["--stdio"],
|
|
461
|
+
"fileTypes": [".vim", ".vimrc"],
|
|
462
|
+
"rootMarkers": [".git"],
|
|
940
463
|
"initOptions": {
|
|
941
464
|
"isNeovim": true,
|
|
942
465
|
"diagnostic": {
|
|
@@ -946,54 +469,21 @@
|
|
|
946
469
|
},
|
|
947
470
|
"emmet-language-server": {
|
|
948
471
|
"command": "emmet-language-server",
|
|
949
|
-
"args": [
|
|
950
|
-
|
|
951
|
-
]
|
|
952
|
-
"fileTypes": [
|
|
953
|
-
".html",
|
|
954
|
-
".css",
|
|
955
|
-
".scss",
|
|
956
|
-
".less",
|
|
957
|
-
".jsx",
|
|
958
|
-
".tsx",
|
|
959
|
-
".vue",
|
|
960
|
-
".svelte"
|
|
961
|
-
],
|
|
962
|
-
"rootMarkers": [
|
|
963
|
-
".git"
|
|
964
|
-
]
|
|
472
|
+
"args": ["--stdio"],
|
|
473
|
+
"fileTypes": [".html", ".css", ".scss", ".less", ".jsx", ".tsx", ".vue", ".svelte"],
|
|
474
|
+
"rootMarkers": [".git"]
|
|
965
475
|
},
|
|
966
476
|
"sourcekit-lsp": {
|
|
967
477
|
"command": "sourcekit-lsp",
|
|
968
478
|
"args": [],
|
|
969
|
-
"fileTypes": [
|
|
970
|
-
|
|
971
|
-
],
|
|
972
|
-
"rootMarkers": [
|
|
973
|
-
"Package.swift",
|
|
974
|
-
"*.xcodeproj",
|
|
975
|
-
"*.xcworkspace",
|
|
976
|
-
"project.yml",
|
|
977
|
-
".swiftpm"
|
|
978
|
-
]
|
|
479
|
+
"fileTypes": [".swift"],
|
|
480
|
+
"rootMarkers": ["Package.swift", "*.xcodeproj", "*.xcworkspace", "project.yml", ".swiftpm"]
|
|
979
481
|
},
|
|
980
482
|
"swiftlint": {
|
|
981
483
|
"command": "swiftlint",
|
|
982
|
-
"args": [
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
"--reporter",
|
|
986
|
-
"json"
|
|
987
|
-
],
|
|
988
|
-
"fileTypes": [
|
|
989
|
-
".swift"
|
|
990
|
-
],
|
|
991
|
-
"rootMarkers": [
|
|
992
|
-
".swiftlint.yml",
|
|
993
|
-
".swiftlint.yaml",
|
|
994
|
-
"Package.swift",
|
|
995
|
-
"*.xcodeproj"
|
|
996
|
-
],
|
|
484
|
+
"args": ["lint", "--quiet", "--reporter", "json"],
|
|
485
|
+
"fileTypes": [".swift"],
|
|
486
|
+
"rootMarkers": [".swiftlint.yml", ".swiftlint.yaml", "Package.swift", "*.xcodeproj"],
|
|
997
487
|
"isLinter": true
|
|
998
488
|
}
|
|
999
489
|
}
|