Skip to content

Commit

Permalink
fixes #51 enables tag attribute completions in source.sql.embedded.cfml
Browse files Browse the repository at this point in the history
  • Loading branch information
atomi committed Jun 29, 2012
1 parent ea5f07f commit 63c2052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 44 deletions.
41 changes: 0 additions & 41 deletions CFQuery.sublime-completions

This file was deleted.

5 changes: 2 additions & 3 deletions coldfusiontagcompletions.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ 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 - comment, \
text.html.cfm.embedded.cfml, source.sql.embedded.cfml "):
return
if SETTINGS.get("verbose_tag_completions"):
return
Expand Down

0 comments on commit 63c2052

Please sign in to comment.