aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/jsp.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/jsp.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/jsp.lua')
-rw-r--r--lua/lexers/jsp.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/lua/lexers/jsp.lua b/lua/lexers/jsp.lua
index b92b886..ef16a1d 100644
--- a/lua/lexers/jsp.lua
+++ b/lua/lexers/jsp.lua
@@ -1,20 +1,20 @@
--- Copyright 2006-2022 Mitchell. See LICENSE.
+-- Copyright 2006-2024 Mitchell. See LICENSE.
-- JSP LPeg lexer.
-local lexer = require('lexer')
-local token, word_match = lexer.token, lexer.word_match
+local lexer = lexer
local P, S = lpeg.P, lpeg.S
-local lex = lexer.new('jsp', {inherit = lexer.load('html')})
+local lex = lexer.new(..., {inherit = lexer.load('html')})
-- Embedded Java.
local java = lexer.load('java')
-local java_start_rule = token('jsp_tag', '<%' * P('=')^-1)
-local java_end_rule = token('jsp_tag', '%>')
+local java_start_rule = lex:tag(lexer.PREPROCESSOR, '<%' * P('=')^-1)
+local java_end_rule = lex:tag(lexer.PREPROCESSOR, '%>')
lex:embed(java, java_start_rule, java_end_rule, true)
-lex:add_style('jsp_tag', lexer.styles.embedded)
-- Fold points.
-lex:add_fold_point('jsp_tag', '<%', '%>')
+lex:add_fold_point(lexer.PREPROCESSOR, '<%', '%>')
+
+lexer.property['scintillua.comment'] = '<!--|-->'
return lex