aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/asp.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/asp.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/asp.lua')
-rw-r--r--lua/lexers/asp.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/lua/lexers/asp.lua b/lua/lexers/asp.lua
index a16f4b6..b604a9b 100644
--- a/lua/lexers/asp.lua
+++ b/lua/lexers/asp.lua
@@ -1,31 +1,31 @@
--- Copyright 2006-2022 Mitchell. See LICENSE.
+-- Copyright 2006-2024 Mitchell. See LICENSE.
-- ASP 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 html = lexer.load('html')
-local lex = lexer.new('asp', {inherit = html}) -- proxy for HTML
+local lex = lexer.new(..., {inherit = html}) -- proxy for HTML
-- Embedded VB.
local vb = lexer.load('vb')
-local vb_start_rule = token('asp_tag', '<%' * P('=')^-1)
-local vb_end_rule = token('asp_tag', '%>')
+local vb_start_rule = lex:tag(lexer.PREPROCESSOR, '<%' * P('=')^-1)
+local vb_end_rule = lex:tag(lexer.PREPROCESSOR, '%>')
lex:embed(vb, vb_start_rule, vb_end_rule)
-lex:add_style('asp_tag', lexer.styles.embedded)
-- Embedded VBScript.
local vbs = lexer.load('vb', 'vbscript')
-local script_element = word_match('script', true)
-local vbs_start_rule = #(P('<') * script_element * (P(function(input, index)
+local script_element = lexer.word_match('script', true)
+local vbs_start_rule = #('<' * script_element * (P(function(input, index)
if input:find('^%s+language%s*=%s*(["\'])vbscript%1', index) or
- input:find('^%s+type%s*=%s*(["\'])text/vbscript%1', index) then return index end
+ input:find('^%s+type%s*=%s*(["\'])text/vbscript%1', index) then return true end
end) + '>')) * html.embed_start_tag -- <script language="vbscript">
-local vbs_end_rule = #('</' * script_element * lexer.space^0 * '>') * html.embed_end_tag -- </script>
+local vbs_end_rule = #('</' * script_element * '>') * html.embed_end_tag -- </script>
lex:embed(vbs, vbs_start_rule, vbs_end_rule)
-- Fold points.
-lex:add_fold_point('asp_tag', '<%', '%>')
+lex:add_fold_point(lexer.PREPROCESSOR, '<%', '%>')
+
+lexer.property['scintillua.comment'] = '<!--|-->'
return lex