We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1302b2c commit 087ac10Copy full SHA for 087ac10
cfml.py
@@ -313,11 +313,11 @@ class CFMLAutoComplete(sublime_plugin.EventListener):
313
def on_query_completions(self, view, prefix, locations):
314
if not view.match_selector(locations[0],
315
"text.html.cfm - source - meta, text.html.cfm.embedded.cfml - source.cfscript.embedded.cfml - source.sql.embedded.cfml"):
316
- return []
+ return
317
318
s = sublime.load_settings('ColdFusion.sublime-settings')
319
if not s.get("verbose_tag_completions"):
320
321
322
# Do not trigger if we are in a tag or string or comment
323
pt = locations[0] - len(prefix) - 1
0 commit comments