-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathplugin.xml
80 lines (72 loc) · 3.01 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
###############################################################################
# Copyright (c) 2013 Angelo Zerr and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Angelo Zerr <angelo.zerr@gmail.com> - Initial API and implementation
###############################################################################
-->
<plugin>
<!--======================================================================================-->
<!-- Completion -->
<!--======================================================================================-->
<extension
point="org.eclipse.wst.sse.ui.completionProposal">
<proposalComputerExtendedActivation
id="org.eclipse.angularjs.ui.proposalComputer.htmlTags">
<contentType
id="org.eclipse.php.core.phpsource">
<partitionType
id="org.eclipse.wst.html.HTML_DEFAULT">
</partitionType>
<partitionType
id="org.eclipse.wst.html.HTML_COMMENT">
</partitionType>
<partitionType
id="org.eclipse.wst.sse.ST_DEFAULT">
</partitionType>
</contentType>
</proposalComputerExtendedActivation>
</extension>
<!--======================================================================================-->
<!-- Semantic Highlighting -->
<!--======================================================================================-->
<extension
point="org.eclipse.wst.sse.ui.semanticHighlighting">
<highlighting
class="org.eclipse.angularjs.ui.style.DirectiveSemanticHighlighting"
target="org.eclipse.php.core.phpsource"
styleStringKey="directiveName">
</highlighting>
</extension>
<extension
point="org.eclipse.wst.sse.ui.semanticHighlighting">
<highlighting
class="org.eclipse.angularjs.ui.style.DirectiveParameterSemanticHighlighting"
target="org.eclipse.php.core.phpsource"
styleStringKey="directiveParameterName">
</highlighting>
</extension>
<extension
point="org.eclipse.wst.sse.ui.semanticHighlighting">
<highlighting
class="org.eclipse.angularjs.ui.style.AngularExpressionSemanticHighlighting"
target="org.eclipse.php.core.phpsource"
styleStringKey="angularExpression">
</highlighting>
</extension>
<extension
point="org.eclipse.wst.sse.ui.semanticHighlighting">
<highlighting
class="org.eclipse.angularjs.ui.style.AngularExpressionBorderSemanticHighlighting"
target="org.eclipse.php.core.phpsource"
styleStringKey="angularExpressionBorder">
</highlighting>
</extension>
</plugin>