Support in regex for --^ and double-quotes don't auto-complete anymore in strings

This commit is contained in:
Olivier Guinart 2017-08-31 19:42:51 -07:00
parent d585b6c82f
commit 7480532e4d
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
{ "open": "\"", "close": "\"", "notIn": ["string"] },
["'", "'"]
],
// symbols that that can be used to surround a selection

View File

@ -40,7 +40,7 @@
"directives": {
"patterns": [{
"name": "support.function.directive.merlin32",
"match": "(?i)\\b(EQU|ANOP|ORG|PUT|PUTBIN|START|END|DUM|DEND|MX|XC|LONGA|LONGI|USE|USING|REL|DSK|LNK|SAV|TYP|IF|DO|ELSE|FIN|LUP|ELUP|\\^|ERR|DAT|AST|CYC|EXP|LST|LSTDO|PAG|TTL|SKP|TR|KBD|PAU|SW|USR)\\b"
"match": "(?i)\\b(EQU|ANOP|ORG|PUT|PUTBIN|START|END|DUM|DEND|MX|XC|LONGA|LONGI|USE|USING|REL|DSK|LNK|SAV|TYP|IF|DO|ELSE|FIN|LUP|ELUP|ERR|DAT|AST|CYC|EXP|LST|LSTDO|PAG|TTL|SKP|TR|KBD|PAU|SW|USR)\\b|(--\\^)"
}]
},
"strings": {