diff options
| author | Luiz de Milon <kori@users.noreply.github.com> | 2016-11-18 15:00:39 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-18 15:00:39 -0300 |
| commit | 16d44deed0f1c7eea25cd0fe74d3c2afaf87221c (patch) | |
| tree | b33d7de35b6103961c6d4894fe1d5f6a9765b725 /lexers | |
| parent | 8cdfd2790da62cb8607c6e2cc783fda001ab0fec (diff) | |
| download | vis-16d44deed0f1c7eea25cd0fe74d3c2afaf87221c.tar.gz vis-16d44deed0f1c7eea25cd0fe74d3c2afaf87221c.tar.xz | |
Update scheme.lua
The scheme syntax highlighting wasn't highlighting base functions, this fixes it.
Diffstat (limited to 'lexers')
| -rw-r--r-- | lexers/scheme.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lexers/scheme.lua b/lexers/scheme.lua index 4d10bbb..dba2d48 100644 --- 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}, |
