forked from microsoft/copilot-for-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (29 loc) · 1.07 KB
/
Copy pathplugin.xml
File metadata and controls
29 lines (29 loc) · 1.07 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
id="com.microsoft.copilot.eclipse.dummy"
name="Copilot supported content-type"
priority="normal" />
</extension>
<extension
point="org.eclipse.lsp4e.languageServer">
<server
id="com.microsoft.copilot.eclipse.ls"
label="GitHub Copilot Language Server"
class="com.microsoft.copilot.eclipse.core.lsp.LsStreamConnectionProvider"
clientImpl="com.microsoft.copilot.eclipse.core.lsp.CopilotLanguageClient"
serverInterface="com.microsoft.copilot.eclipse.core.lsp.CopilotLanguageServer"
singleton="true"
launcherBuilder="com.microsoft.copilot.eclipse.core.lsp.CopilotLauncherBuilder"
lastDocumentDisconnectedTimeout="2147483647"> <!-- TODO: this is defer the ls shutdown, which will lose the chat status -->
</server>
<contentTypeMapping
id="com.microsoft.copilot.eclipse.ls"
languageId="dummy"
contentType="com.microsoft.copilot.eclipse.dummy">
</contentTypeMapping>
</extension>
</plugin>