aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/lisp.lua
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-08-11 01:27:32 +0200
committerRandy Palamar <randy@rnpnr.xyz>2024-03-27 06:04:21 -0600
commit4c4392d29df777ff702dfe99b4f3c23142976e05 (patch)
tree5355324abe18952f7d19d6cfc5dbeb5d6cb72b84 /lua/lexers/lisp.lua
parent95bf9f59f8a9a37148bdc0787db378d62c7cd032 (diff)
downloadvis-4c4392d29df777ff702dfe99b4f3c23142976e05.tar.gz
vis-4c4392d29df777ff702dfe99b4f3c23142976e05.tar.xz
update lexers to orbitalquark/scintillua@b789dde
Rather than cherry pick patches from after 6.2 we will just grab everything as is.
Diffstat (limited to 'lua/lexers/lisp.lua')
-rw-r--r--lua/lexers/lisp.lua11
1 files changed, 4 insertions, 7 deletions
diff --git a/lua/lexers/lisp.lua b/lua/lexers/lisp.lua
index 6a0e680..e5aa270 100644
--- a/lua/lexers/lisp.lua
+++ b/lua/lexers/lisp.lua
@@ -1,4 +1,4 @@
--- Copyright 2006-2022 Mitchell. See LICENSE.
+-- Copyright 2006-2024 Mitchell. See LICENSE.
-- Lisp LPeg lexer.
local lexer = require('lexer')
@@ -31,7 +31,7 @@ lex:add_rule('keyword', token(lexer.KEYWORD, word_match{
}))
-- Identifiers.
-local word = lexer.alpha * (lexer.alnum + '_' + '-')^0
+local word = lexer.alpha * (lexer.alnum + S('_-'))^0
lex:add_rule('identifier', token(lexer.IDENTIFIER, word))
-- Strings.
@@ -45,10 +45,6 @@ lex:add_rule('comment', token(lexer.COMMENT, line_comment + block_comment))
-- Numbers.
lex:add_rule('number', token(lexer.NUMBER, P('-')^-1 * lexer.digit^1 * (S('./') * lexer.digit^1)^-1))
--- Entities.
-lex:add_rule('entity', token('entity', '&' * word))
-lex:add_style('entity', lexer.styles.variable)
-
-- Operators.
lex:add_rule('operator', token(lexer.OPERATOR, S('<>=*/+-`@%()')))
@@ -57,6 +53,7 @@ lex:add_fold_point(lexer.OPERATOR, '(', ')')
lex:add_fold_point(lexer.OPERATOR, '[', ']')
lex:add_fold_point(lexer.OPERATOR, '{', '}')
lex:add_fold_point(lexer.COMMENT, '#|', '|#')
-lex:add_fold_point(lexer.COMMENT, lexer.fold_consecutive_lines(';'))
+
+lexer.property['scintillua.comment'] = ';'
return lex