Update LogiQL highlighting: add alias_all storage type

This commit is contained in:
Zef Hemel 2014-01-07 17:54:33 +01:00
commit b79cb61861

View file

@ -98,7 +98,7 @@ var LogiQLHighlightRules = function() {
//All the lang system predicates
},
{ token: [ 'storage.type', 'text' ],
regex: '(export|sealed|clauses|block|alias)(\\s*\\()(?=`)',
regex: '(export|sealed|clauses|block|alias|alias_all)(\\s*\\()(?=`)',
//Module keywords
},
{ token: 'entity.name',
@ -116,4 +116,4 @@ var LogiQLHighlightRules = function() {
oop.inherits(LogiQLHighlightRules, TextHighlightRules);
exports.LogiQLHighlightRules = LogiQLHighlightRules;
});
});