PT #159413155: Generic YAML editor with spaces instead of tab indent

This commit is contained in:
BoykoAlex
2018-08-22 18:26:08 -04:00
parent 6647b58d9d
commit a186bc35a8
7 changed files with 103 additions and 6 deletions

View File

@@ -38,6 +38,9 @@
<initializer
class="org.springframework.tooling.ls.eclipse.commons.console.preferences.LanguageServerConsolesPrefsInitializer">
</initializer>
<initializer
class="org.springframework.tooling.ls.eclipse.commons.YamlGenericEditorPreferencesInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.console.consolePageParticipants">
@@ -49,4 +52,15 @@
</enablement>
</consolePageParticipant>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.springframework.tooling.ls.eclipse.commons.YamlGenericEditor"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
default="false"
icon="platform:/plugin/org.eclipse.ui.genericeditor/icons/full/obj16/generic_editor.png"
id="org.springframework.tooling.ls.eclipse.commons.YamlGenericEditor"
name="Generic YAML Editor">
</editor>
</extension>
</plugin>