vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit b0bf2e1a1af86e21af500a14bb15a2fe2fea2413 parent 9bdb1b5556879b277ad14870041c411e7c8b941e Author: Luiz de Milon <kori@users.noreply.github.com> Date: Fri, 18 Nov 2016 15:00:39 -0300 Update scheme.lua The scheme syntax highlighting wasn't highlighting base functions, this fixes it. Diffstat:
| M | lexers/scheme.lua | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/lexers/scheme.lua b/lexers/scheme.lua @@ -79,6 +79,7 @@ local operator = token(l.OPERATOR, S('<>=*/+-`@%:()')) local entity = token('entity', '&' * word) M._rules = { + {'func', func}, {'whitespace', ws}, {'keyword', keyword}, {'identifier', identifier},