aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/gherkin.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/gherkin.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/gherkin.lua')
-rw-r--r--lua/lexers/gherkin.lua13
1 files changed, 6 insertions, 7 deletions
diff --git a/lua/lexers/gherkin.lua b/lua/lexers/gherkin.lua
index c876fe3..73c9e7d 100644
--- a/lua/lexers/gherkin.lua
+++ b/lua/lexers/gherkin.lua
@@ -1,4 +1,4 @@
--- Copyright 2015-2022 Jason Schindler. See LICENSE.
+-- Copyright 2015-2024 Jason Schindler. See LICENSE.
-- Gherkin (https://github.com/cucumber/cucumber/wiki/Gherkin) LPeg lexer.
local lexer = require('lexer')
@@ -26,15 +26,14 @@ lex:add_rule('comment', token(lexer.COMMENT, lexer.to_eol('#')))
-- lex:add_rule('number', token(lexer.NUMBER, lexer.number))
-- Tags.
-lex:add_rule('tag', token('tag', '@' * lexer.word^0))
-lex:add_style('tag', lexer.styles.label)
+lex:add_rule('tag', token(lexer.LABEL, '@' * lexer.word^0))
-- Placeholders.
-lex:add_rule('placeholder', token('placeholder', lexer.range('<', '>', false, false, true)))
-lex:add_style('placeholder', lexer.styles.variable)
+lex:add_rule('placeholder', token(lexer.VARIABLE, lexer.range('<', '>', false, false, true)))
-- Examples.
-lex:add_rule('example', token('example', lexer.to_eol('|')))
-lex:add_style('example', lexer.styles.number)
+lex:add_rule('example', token(lexer.DEFAULT, lexer.to_eol('|')))
+
+lexer.property['scintillua.comment'] = '#'
return lex