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
|
<?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,dockerfile"
file-names="Dockerfile"
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>
|