tweak(xod-arduino): tweak token for CppImplementationEditor to highlight inputs/outputs with lowercase characters in the name (#1006)

This commit is contained in:
Kirill Shumilov
2018-01-16 15:43:57 +03:00
parent 823744e6c1
commit f8610b355c

View File

@@ -2,7 +2,7 @@
const getTokens = () => [
{
regex: /\b((?:input|output)_[A-Z0-9-_]+)\b/gm,
regex: /\b((?:input|output)_[A-Za-z0-9-_]+)\b/gm,
token: 'tag',
},
{