|
32 | 32 | "main": "./out/desktop/extension.js", |
33 | 33 | "browser": "./out/web/extension.js", |
34 | 34 | "contributes": { |
35 | | - "chatParticipants": [ |
36 | | - { |
37 | | - "id": "neuropilot.api", |
38 | | - "name": "neuroapi", |
39 | | - "fullName": "Neuro API (custom name selected)", |
40 | | - "description": "Chat with the connected server", |
41 | | - "when": "config.neuropilot.currentlyAsNeuroAPI != 'Neuro' && config.neuropilot.currentlyAsNeuroAPI != 'Evil'", |
42 | | - "isSticky": true, |
43 | | - "commands": [ |
44 | | - { |
45 | | - "name": "fix", |
46 | | - "description": "Ask the server to fix an error" |
47 | | - }, |
48 | | - { |
49 | | - "name": "explain", |
50 | | - "description": "Ask the server to explain something in your code" |
51 | | - } |
52 | | - ] |
53 | | - }, |
54 | | - { |
55 | | - "id": "neuropilot.neuro", |
56 | | - "name": "neuro", |
57 | | - "fullName": "Neuro-sama", |
58 | | - "description": "Chat with Neuro-sama", |
59 | | - "when": "config.neuropilot.currentlyAsNeuroAPI == 'Neuro'", |
60 | | - "isSticky": true, |
61 | | - "commands": [ |
62 | | - { |
63 | | - "name": "fix", |
64 | | - "description": "Ask Neuro to fix an error" |
65 | | - }, |
66 | | - { |
67 | | - "name": "explain", |
68 | | - "description": "Ask Neuro to explain something in your code" |
69 | | - } |
70 | | - ] |
71 | | - }, |
72 | | - { |
73 | | - "id": "neuropilot.evil", |
74 | | - "name": "evil", |
75 | | - "fullName": "Evil Neuro", |
76 | | - "description": "Chat with Evil Neuro", |
77 | | - "when": "config.neuropilot.currentlyAsNeuroAPI === 'Evil'", |
78 | | - "isSticky": true, |
79 | | - "commands": [ |
80 | | - { |
81 | | - "name": "fix", |
82 | | - "description": "Ask Evil to fix an error" |
83 | | - }, |
84 | | - { |
85 | | - "name": "explain", |
86 | | - "description": "Ask Evil to explain something in your code" |
87 | | - } |
88 | | - ] |
89 | | - } |
90 | | - ], |
91 | 35 | "commands": [ |
92 | 36 | { |
93 | 37 | "command": "neuropilot.reconnect", |
|
247 | 191 | "neuropilot.beforeContext": { |
248 | 192 | "type": "integer", |
249 | 193 | "default": 500, |
250 | | - "description": "The number of lines before the cursor position to include as context when editing a file or sending a completion request" |
| 194 | + "description": "The number of lines before the cursor position to include as context when editing a file." |
251 | 195 | }, |
252 | 196 | "neuropilot.afterContext": { |
253 | 197 | "type": "integer", |
254 | 198 | "default": 500, |
255 | | - "description": "The number of lines after the cursor position to include as context when editing a file or sending a completion request" |
256 | | - }, |
257 | | - "neuropilot.maxCompletions": { |
258 | | - "type": "integer", |
259 | | - "default": 3, |
260 | | - "description": "The maximum number of completions to request" |
261 | | - }, |
262 | | - "neuropilot.completionTrigger": { |
263 | | - "type": "string", |
264 | | - "default": "invokeOnly", |
265 | | - "description": "When to trigger completions", |
266 | | - "enum": [ |
267 | | - "off", |
268 | | - "invokeOnly", |
269 | | - "automatic" |
270 | | - ], |
271 | | - "enumDescriptions": [ |
272 | | - "Disable inline completion suggestions", |
273 | | - "Only request completions when the user explicitly invokes the completion provider", |
274 | | - "Automatically request completions when the user stops typing" |
275 | | - ] |
276 | | - }, |
277 | | - "neuropilot.timeout": { |
278 | | - "type": "integer", |
279 | | - "default": 10000, |
280 | | - "description": "The timeout in milliseconds for completions and chat responses in ms" |
| 199 | + "description": "The number of lines after the cursor position to include as context when editing a file." |
281 | 200 | }, |
282 | 201 | "neuropilot.includePattern": { |
283 | 202 | "markdownDeprecationMessage": "This setting has been moved to `neuropilot.access.includePattern`." |
|
627 | 546 | }, |
628 | 547 | "neuropilot.connection.nameOfAPI": { |
629 | 548 | "type": "string", |
630 | | - "markdownDescription": "Who is currently acting as the Neuro API server?\nThis only changes the name in certain areas (such as Copilot-mode requests or Git commit messages) due to limitations.\n\nYou can add custom characters using `settings.json` if you ignore the lint error from VS Code.\n\n(Most) names mentioned here are not associated with NeuroPilot.", |
| 549 | + "markdownDescription": "Who is currently acting as the Neuro API server?\nThis only changes the name in certain areas (such as Copilot-mode requests) due to limitations.\n\nYou can add custom characters using `settings.json` if you ignore the lint error from VS Code.\n\n(Most) names mentioned here are not associated with NeuroPilot.", |
631 | 550 | "default": "Neuro", |
632 | 551 | "enum": [ |
633 | 552 | "Neuro", |
|
785 | 704 | "capabilities": { |
786 | 705 | "virtualWorkspaces": { |
787 | 706 | "supported": "limited", |
788 | | - "description": "In virtual workspaces, Terminal, Tasks, Git support (restricted on web) and Copilot Chat mode (restricted on web) is not available." |
| 707 | + "description": "In virtual workspaces, Terminal and Tasks are not available." |
789 | 708 | }, |
790 | 709 | "untrustedWorkspaces": { |
791 | 710 | "supported": "limited", |
|
0 commit comments