forked from eclipse-linuxtools/org.eclipse.linuxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
58 lines (57 loc) · 2.17 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.lsp4e.languageServer">
<server
class="org.eclipse.linuxtools.docker.editor.ls.DockerfileLanguageServer"
id="org.eclipse.linuxtools.docker.editor.ls.server"
label="Dockerfile Language Server">
</server>
<contentTypeMapping
contentType="org.eclipse.linuxtools.docker.editor.ls"
languageId="Dockerfile"
id="org.eclipse.linuxtools.docker.editor.ls.server">
</contentTypeMapping>
</extension>
<extension
point="org.eclipse.ui.editors">
<editorContentTypeBinding
contentTypeId="org.eclipse.linuxtools.docker.editor.ls"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
</extension>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
base-type="org.eclipse.core.runtime.text"
file-extensions="Dockerfile,Containerfile,dockerfile"
file-names="Dockerfile,Containerfile"
file-patterns="Dockerfile.*,Containerfile.*"
id="org.eclipse.linuxtools.docker.editor.ls"
name="Dockerfile"
priority="normal">
</content-type>
</extension>
<extension
point="org.eclipse.tm4e.registry.grammars">
<grammar
path="grammars/Dockerfile.tmLanguage"
scopeName="source.dockerfile">
</grammar>
<scopeNameContentTypeBinding
contentTypeId="org.eclipse.linuxtools.docker.editor.ls"
scopeName="source.dockerfile">
</scopeNameContentTypeBinding>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
contentType="org.eclipse.linuxtools.docker.editor.ls">
</presentationReconciler>
</extension>
<extension point="org.eclipse.ui.genericeditor.icons">
<icon contentType="org.eclipse.linuxtools.docker.editor.ls" icon="icons/dockerfile.png" />
</extension>
</plugin>