diff options
| author | mitchell <70453897+orbitalquark@users.noreply.github.com> | 2024-06-18 11:52:54 +0200 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2024-07-26 05:49:52 -0600 |
| commit | 8e9c76550bafd7c573b1da91214439c7d5e0b4c9 (patch) | |
| tree | 0d7cb77643202c85f31485a91d5c1719983cc096 /lua/lexers/hare.lua | |
| parent | 496fcacfd08b0f7afe34979cd0803b956d3c7efa (diff) | |
| download | vis-8e9c76550bafd7c573b1da91214439c7d5e0b4c9.tar.gz vis-8e9c76550bafd7c573b1da91214439c7d5e0b4c9.tar.xz | |
pull latest changes from scintillua
This combines:
Added 'done' literal to Hare lexer.
Initialize fold constants when Scintillua is used as a standalone library.
Diffstat (limited to 'lua/lexers/hare.lua')
| -rw-r--r-- | lua/lexers/hare.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/hare.lua b/lua/lexers/hare.lua index fcf6e6a..24f5375 100644 --- a/lua/lexers/hare.lua +++ b/lua/lexers/hare.lua @@ -74,7 +74,7 @@ lex:set_word_list(lexer.FUNCTION_BUILTIN, { 'vaarg', 'vaend', 'vastart' }) -lex:set_word_list(lexer.CONSTANT_BUILTIN, 'false null true void') +lex:set_word_list(lexer.CONSTANT_BUILTIN, 'done false null true void') lexer.property['scintillua.comment'] = '//' |
