PT #134848903: added syntax coloring to eclipse-lsp editors for properties and yaml files

This commit is contained in:
Martin Lippert
2016-11-25 16:06:17 +01:00
parent a43ac18324
commit 1c633b8865
5 changed files with 128 additions and 1 deletions

View File

@@ -71,4 +71,28 @@
</editorContentTypeBinding>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="org.springframework.boot.ide.properties.editors.SpringPropertiesPresentationReconciler"
contentType="org.springframework.boot.ide.properties.application.properties">
</presentationReconciler>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="org.springframework.boot.ide.properties.editors.SpringYMLPresentationReconciler"
contentType="org.springframework.boot.ide.properties.application.yml">
</presentationReconciler>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="org.springframework.boot.ide.properties.editors.SpringYMLPresentationReconciler"
contentType="org.springframework.boot.ide.manifest.yml">
</presentationReconciler>
</extension>
</plugin>