fix token matching for tal mode

--HG--
branch : pmacs2
This commit is contained in:
~d6 2021-12-22 22:01:33 -05:00
parent 8ae2a8f0b0
commit 997be878f2
1 changed files with 4 additions and 0 deletions

View File

@ -218,6 +218,10 @@ class Tal(Fundamental):
'tal.pad': hi_orange,
'tal.spacer': hi_orange,
}
opentokens = ('delimiter',)
opentags = {'(': ')', '[': ']', '{': '}'}
closetokens = ('delimiter',)
closetags = {')': '(', ']': '[', '}': '{'}
_bindings = {
'taldoc': ('C-c p',),
'close-paren': (')',),