We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f972a1 commit e4a5d59Copy full SHA for e4a5d59
plugins/syntax_dev/completions.py
@@ -247,8 +247,10 @@ def match_selector(selector, offset=0):
247
"meta.expect-context-list-or-content | meta.context-list-or-content",
248
-1,
249
):
250
- result = ((self._complete_keyword(prefix, locations) or [])
251
- + self._complete_context(prefix, locations))
+ result = (
+ (self._complete_keyword(prefix, locations) or [])
252
+ + self._complete_context(prefix, locations)
253
+ )
254
255
# Auto-completion for include values using the 'contexts' keys
256
elif match_selector(
@@ -271,7 +273,7 @@ def match_selector(selector, offset=0):
271
273
else:
272
274
# Standard completions for unmatched regions
275
result = self._complete_keyword(prefix, locations)
-
276
+
277
return result
278
279
def _line_prefix(self, point):
0 commit comments