forked from SublimeCodeIntel/SublimeCodeIntel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlang_twig.py
More file actions
226 lines (192 loc) · 5.3 KB
/
lang_twig.py
File metadata and controls
226 lines (192 loc) · 5.3 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#!/usr/bin/env python
# Copyright (c) 2006-2012 ActiveState Software Inc.
# See LICENSE.txt for license details.
"""Twig support for codeintel"""
import logging
from codeintel2.common import *
from codeintel2.langintel import LangIntel
from codeintel2.udl import UDLLexer, UDLBuffer, UDLCILEDriver, XMLParsingBufferMixin
if _xpcom_:
from xpcom.server import UnwrapObject
#---- globals
lang = "Twig"
log = logging.getLogger("codeintel.twig")
twig_keywords = [
"and",
"as",
"b-and",
"b-or",
"b-xor",
"by",
"in",
"not",
"or",
]
twig_keywords2 = [
"attribute",
"block",
"constant",
"cycle",
"date",
"dump",
"parent",
"random",
"range",
"constant",
"defined",
"divisibleby",
"empty",
"even",
"iterable",
"null",
"odd",
"sameas",
]
twig_keywords += twig_keywords2
twig_tags = [
"autoescape",
"block",
"do",
"embed",
"extends",
"filter",
"flush",
"for",
"from",
"if",
"import",
"include",
"macro",
"raw",
"sandbox",
"set",
"spaceless",
"use",
# end tags
"endautoescape",
"endblock",
"endcomment",
"endembed",
"endfilter",
"endfor",
"endif",
"endmacro",
"endraw",
"endsandbox",
"endspaceless",
"endwith",
]
twig_default_filter_names = [
# These are default filter names in twig
"capitalize",
"convert_encoding",
"date",
"default",
"escape",
"format",
"join",
"json_encode",
"keys",
"length",
"lower",
"merge",
"nl2br",
"number_format",
"raw",
"replace",
"reverse",
"slice",
"sort",
"striptags",
"title",
"trim",
"upper",
"url_encode",
]
#---- language support
class TwigLexer(UDLLexer):
lang = lang
class TwigBuffer(UDLBuffer, XMLParsingBufferMixin):
lang = lang
tpl_lang = lang
m_lang = "HTML"
css_lang = "CSS"
csl_lang = "JavaScript"
ssl_lang = "Twig"
# Characters that should close an autocomplete UI:
# - wanted for XML completion: ">'\" "
# - wanted for CSS completion: " ('\";},.>"
# - wanted for JS completion: "~`!@#%^&*()-=+{}[]|\\;:'\",.<>?/ "
# - dropping ':' because I think that may be a problem for XML tag
# completion with namespaces (not sure of that though)
# - dropping '[' because need for "<!<|>" -> "<![CDATA[" cpln
# - dropping '-' because causes problem with CSS (bug 78312)
# - dropping '!' because causes problem with CSS "!important" (bug 78312)
cpln_stop_chars = "'\" (;},~`@#%^&*()=+{}]|\\;,.<>?/"
class TwigLangIntel(LangIntel):
lang = lang
# Used by ProgLangTriggerIntelMixin.preceding_trg_from_pos()
trg_chars = tuple('| ')
calltip_trg_chars = tuple()
def trg_from_pos(self, buf, pos, implicit=True, DEBUG=False):
"""
CODE CONTEXT RESULT
'{<|>' anywhere tag names, i.e. {% if %}
'foo|<|>' filters filter names, i.e. {{ foo|capfirst }}
"""
# DEBUG = True # not using 'logging' system, because want to be fast
if DEBUG:
print("\n----- Twig trg_from_pos(pos=%r, implicit=%r) -----"\
% (pos, implicit))
if pos < 2:
return None
accessor = buf.accessor
last_pos = pos - 1
last_char = accessor.char_at_pos(last_pos)
if DEBUG:
print(" last_pos: %s" % last_pos)
print(" last_char: %r" % last_char)
print('accessor.text_range(last_pos-2, last_pos): %r' % (accessor.text_range(last_pos-2, last_pos), ))
if last_char == " " and \
accessor.text_range(last_pos-2, last_pos) == "{%":
if DEBUG:
print(" triggered: 'complete-tags'")
return Trigger(lang, TRG_FORM_CPLN,
"complete-tags", pos, implicit)
if last_char == "|":
if DEBUG:
print(" triggered: 'complete-filters'")
return Trigger(lang, TRG_FORM_CPLN,
"complete-filters", pos, implicit)
_twigtag_cplns = [("element", t) for t in sorted(twig_tags)]
_twigfilter_cplns = [("function", t) for t in sorted(
twig_default_filter_names)]
def async_eval_at_trg(self, buf, trg, ctlr):
if _xpcom_:
trg = UnwrapObject(trg)
ctlr = UnwrapObject(ctlr)
ctlr.start(buf, trg)
# Twig tag completions
if trg.id == (lang, TRG_FORM_CPLN, "complete-tags"):
ctlr.set_cplns(self._twigtag_cplns)
ctlr.done("success")
return
if trg.id == (lang, TRG_FORM_CPLN, "complete-filters"):
ctlr.set_cplns(self._twigfilter_cplns)
ctlr.done("success")
return
ctlr.done("success")
class TwigCILEDriver(UDLCILEDriver):
lang = lang
csl_lang = "JavaScript"
tpl_lang = "Twig"
#---- registration
def register(mgr):
"""Register language support with the Manager."""
mgr.set_lang_info(lang,
silvercity_lexer=TwigLexer(),
buf_class=TwigBuffer,
langintel_class=TwigLangIntel,
import_handler_class=None,
cile_driver_class=TwigCILEDriver,
is_cpln_lang=True)