summaryrefslogtreecommitdiff
path: root/cmd/opdoc/tmLanguage.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/opdoc/tmLanguage.go')
-rw-r--r--cmd/opdoc/tmLanguage.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/opdoc/tmLanguage.go b/cmd/opdoc/tmLanguage.go
index dda9a7976..3f5aa8503 100644
--- a/cmd/opdoc/tmLanguage.go
+++ b/cmd/opdoc/tmLanguage.go
@@ -172,10 +172,11 @@ func buildSyntaxHighlight() *tmLanguage {
Name: "keyword.other.unit.teal",
Match: fmt.Sprintf("^(%s)\\b", strings.Join(names, "|")),
})
- // For these four, accumulate into allArithmetics,
+ // For these, accumulate into allArithmetics,
// and only add to keyword.Patterns later, when all
// have been collected.
- case "Arithmetic", "Byte Array Slicing", "Byteslice Arithmetic", "Byteslice Logic":
+ case "Arithmetic", "Byte Array Slicing", "Byte Array Arithmetic",
+ "Byte Array Logic", "Inner Transactions":
escape := map[rune]bool{
'*': true,
'+': true,