This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
108 lines (107 loc) · 4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
base-type="org.eclipse.core.runtime.text"
file-extensions="as"
id="com.as3mxml.contenttype.actionscript3"
name="ActionScript 3.0"
priority="normal">
</content-type>
<content-type
base-type="org.eclipse.core.runtime.text"
file-extensions="mxml"
id="com.as3mxml.contenttype.mxml"
name="MXML"
priority="normal">
</content-type>
<content-type
base-type="org.eclipse.core.runtime.text"
file-names="asconfig.json"
file-patterns="asconfig.*.json"
id="com.as3mxml.contenttype.asconfig"
name="ActionScript & MXML Configuration"
priority="normal">
</content-type>
</extension>
<extension
point="org.eclipse.lsp4e.languageServer">
<server
class="com.as3mxml.eclipse.AS3MXMLConnectionProvider"
id="com.as3mxml.eclipse.languageServer"
label="ActionScript & MXML Language Server">
</server>
<contentTypeMapping
contentType="com.as3mxml.contenttype.actionscript3"
id="com.as3mxml.eclipse.languageServer">
</contentTypeMapping>
<contentTypeMapping
contentType="com.as3mxml.contenttype.mxml"
id="com.as3mxml.eclipse.languageServer">
</contentTypeMapping>
</extension>
<extension
point="org.eclipse.ui.editors">
<editorContentTypeBinding
contentTypeId="com.as3mxml.contenttype.actionscript3"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
<editorContentTypeBinding
contentTypeId="com.as3mxml.contenttype.mxml"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
<editorContentTypeBinding
contentTypeId="com.as3mxml.contenttype.asconfig"
editorId="org.eclipse.ui.genericeditor.GenericEditor">
</editorContentTypeBinding>
</extension>
<extension
point="org.eclipse.ui.genericeditor.presentationReconcilers">
<presentationReconciler
class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
contentType="com.as3mxml.contenttype.actionscript3">
</presentationReconciler>
<presentationReconciler
class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
contentType="com.as3mxml.contenttype.mxml">
</presentationReconciler>
</extension>
<extension
point="org.eclipse.tm4e.registry.grammars">
<grammar
path="syntaxes/AS3.tmLanguage"
scopeName="source.actionscript.3">
</grammar>
<grammar
path="syntaxes/MXML.tmLanguage"
scopeName="text.mxml">
</grammar>
<scopeNameContentTypeBinding
contentTypeId="com.as3mxml.contenttype.actionscript3"
scopeName="source.actionscript.3">
</scopeNameContentTypeBinding>
<scopeNameContentTypeBinding
contentTypeId="com.as3mxml.contenttype.mxml"
scopeName="text.mxml">
</scopeNameContentTypeBinding>
</extension>
<extension
point="org.eclipse.tm4e.languageconfiguration.languageConfigurations">
<languageConfiguration
contentTypeId="com.as3mxml.contenttype.actionscript3"
path="language-configurations/actionscript.configuration.json">
</languageConfiguration>
<languageConfiguration
contentTypeId="com.as3mxml.contenttype.mxml"
path="language-configurations/mxml.configuration.json">
</languageConfiguration>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="com.as3mxml.eclipse.AS3MXMLPreferenceInitializer">
</initializer>
</extension>
</plugin>