Skip to content

Commit

Permalink
tidy up selector list
Browse files Browse the repository at this point in the history
  • Loading branch information
atomi committed Jun 25, 2012
1 parent 087ac10 commit 52182c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion coldfusiontagcompletions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ class TagAutoComplete(sublime_plugin.EventListener):
def on_query_completions(self, view, prefix, locations):
completions = []
if not view.match_selector(locations[0],
"text.html.cfm - source - meta, text.html.cfm.embedded.cfml - source.cfscript.embedded.cfml - source.sql.embedded.cfml"):
"text.html.cfm - source - meta, \
text.html.cfm.embedded.cfml - \
source.cfscript.embedded.cfml - source.sql.embedded.cfml"):
return
s = sublime.load_settings('ColdFusion.sublime-settings')
if s.get("verbose_tag_completions"):
Expand Down

0 comments on commit 52182c5

Please sign in to comment.