Closed mitranim closed 5 years ago
Package/Sublime Text Syntax Definition/References - Context.tmPreferences wants to add context names to references:
Package/Sublime Text Syntax Definition/References - Context.tmPreferences
<dict> <key>scope</key> <string>source.yaml.sublime.syntax meta.include variable.other</string> <key>settings</key> <dict> <key>showInIndexedReferenceList</key> <integer>1</integer> </dict> </dict>
As far as I can tell, context names that appear in include, push, set, push: [], set: [] aren't added to the reference list. Probably because they're also scoped as string.unquoted in all of those places.
include
push
set
push: []
set: []
string.unquoted
see https://github.com/SublimeText/PackageDev/pull/213, presumably you need to patch your Packages/Default/symbol.py to get this working
Packages/Default/symbol.py
Ooh didn't notice that. Thanks for the pointer.
Package/Sublime Text Syntax Definition/References - Context.tmPreferences
wants to add context names to references:As far as I can tell, context names that appear in
include
,push
,set
,push: []
,set: []
aren't added to the reference list. Probably because they're also scoped asstring.unquoted
in all of those places.