File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -247,8 +247,10 @@ def match_selector(selector, offset=0):
247
247
"meta.expect-context-list-or-content | meta.context-list-or-content" ,
248
248
- 1 ,
249
249
):
250
- result = ((self ._complete_keyword (prefix , locations ) or [])
251
- + self ._complete_context (prefix , locations ))
250
+ result = (
251
+ (self ._complete_keyword (prefix , locations ) or [])
252
+ + self ._complete_context (prefix , locations )
253
+ )
252
254
253
255
# Auto-completion for include values using the 'contexts' keys
254
256
elif match_selector (
@@ -271,7 +273,7 @@ def match_selector(selector, offset=0):
271
273
else :
272
274
# Standard completions for unmatched regions
273
275
result = self ._complete_keyword (prefix , locations )
274
-
276
+
275
277
return result
276
278
277
279
def _line_prefix (self , point ):
You can’t perform that action at this time.
0 commit comments