aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/inform.lua
diff options
context:
space:
mode:
authorqiu-x <alex@alexslomka.xyz>2022-06-29 07:56:51 +0200
committerFelix Van der Jeugt <felix.vanderjeugt@posteo.net>2022-11-29 21:57:18 +0100
commit8a420ecc4c1ed50111464ec66901bd983eaf2dbd (patch)
treef31d2186cafaee6e7f18d32fe99144c3e8148c00 /lua/lexers/inform.lua
parent981b90a203484182feace48471fe2b53dae7676f (diff)
downloadvis-8a420ecc4c1ed50111464ec66901bd983eaf2dbd.tar.gz
vis-8a420ecc4c1ed50111464ec66901bd983eaf2dbd.tar.xz
Resync the lexers with Scintillua
- Resync the lexers with Scintillua - Update the lexer readme - Update `zenburn` theme to fix some highlighting issues - lexers: redirect print function to vis:info() - Fix support for custom style names - As per error message "lexer.delimited_range() is deprecated, use lexer.range()". - Remove remaining `lexer.delimited_range()` call - Set syntax to `nil` if the file type has no matching lexer - Updated Go lexer for Go 1.18. - lexers/dsv: convert to new lexer format (cherry picked from commit 9edbc3cd9ea1d7142b1305840432a3d2739e755a) - lexers/gemini: disable legacy gemini lexer This reverts commit 468f9ee1b027a7ce98b1a249fa1af5888feeb989. It is in legacy format and of questionable quality. Ideally it should be contributed upstream from where it will eventually trickle down to us. - lexers/git-rebase: convert to new lexer format (cherry picked from commit 4000a4cc9ac4a4c2869dfae772b977a82aee8d8c) - lexers/strace: convert to new lexer format (cherry picked from commit e420451320d97eb164f5629c1bcfab0b595be29d) - lexers/typescript: add new upstream lexer revision 28e2b60 (cherry picked from commit 7326e6deecdaa75fa94ae9ebdb653f9f907b33f2) - use `package.searchpath` instead of a local `searchpath` function - Restore `filetype: support filetype detection via hashbang` - Remove redundant comment - Restore gemini lexer
Diffstat (limited to 'lua/lexers/inform.lua')
-rw-r--r--lua/lexers/inform.lua138
1 files changed, 58 insertions, 80 deletions
diff --git a/lua/lexers/inform.lua b/lua/lexers/inform.lua
index c2e63e9..728cbfc 100644
--- a/lua/lexers/inform.lua
+++ b/lua/lexers/inform.lua
@@ -1,97 +1,75 @@
--- Copyright 2010-2017 Jeff Stone. See LICENSE.
+-- Copyright 2010-2022 Jeff Stone. See LICENSE.
-- Inform LPeg lexer for Scintillua.
-- JMS 2010-04-25.
-local l = require('lexer')
-local token, word_match = l.token, l.word_match
-local P, R, S = lpeg.P, lpeg.R, lpeg.S
+local lexer = require('lexer')
+local token, word_match = lexer.token, lexer.word_match
+local P, S = lpeg.P, lpeg.S
-local M = {_NAME = 'inform'}
+local lex = lexer.new('inform')
-- Whitespace.
-local ws = token(l.WHITESPACE, l.space^1)
-
--- Comments.
-local comment = token(l.COMMENT, '!' * l.nonnewline^0)
-
--- Strings.
-local sq_str = l.delimited_range("'")
-local dq_str = l.delimited_range('"')
-local string = token(l.STRING, sq_str + dq_str)
-
--- Numbers.
-local inform_hex = '$' * l.xdigit^1
-local inform_bin = '$$' * S('01')^1
-local number = token(l.NUMBER, l.integer + inform_hex + inform_bin)
+lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
-- Keywords.
-local keyword = token(l.KEYWORD, word_match{
- 'Abbreviate', 'Array', 'Attribute', 'Class', 'Constant', 'Default', 'End',
- 'Endif', 'Extend', 'Global', 'Ifdef', 'Iffalse', 'Ifndef', 'Ifnot', 'Iftrue',
- 'Import', 'Include', 'Link', 'Lowstring', 'Message', 'Object', 'Property',
- 'Release', 'Replace', 'Serial', 'StartDaemon', 'Statusline', 'StopDaemon',
- 'Switches', 'Verb', 'absent', 'action', 'actor', 'add_to_scope', 'address',
- 'additive', 'after', 'and', 'animate', 'article', 'articles', 'before',
- 'bold', 'box', 'break', 'cant_go', 'capacity', 'char', 'class', 'child',
- 'children', 'clothing', 'concealed', 'container', 'continue', 'creature',
- 'daemon', 'deadflag', 'default', 'describe', 'description', 'do', 'door',
- 'door_dir', 'door_to', 'd_to', 'd_obj', 'e_to', 'e_obj', 'each_turn',
- 'edible', 'else', 'enterable', 'false', 'female', 'first', 'font', 'for',
- 'found_in', 'general', 'give', 'grammar', 'has', 'hasnt', 'held', 'if', 'in',
- 'in_to', 'in_obj', 'initial', 'inside_description', 'invent', 'jump', 'last',
- 'life', 'light', 'list_together', 'location', 'lockable', 'locked', 'male',
- 'move', 'moved', 'multi', 'multiexcept', 'multiheld', 'multiinside', 'n_to',
- 'n_obj', 'ne_to', 'ne_obj', 'nw_to', 'nw_obj', 'name', 'neuter', 'new_line',
- 'nothing', 'notin', 'noun', 'number', 'objectloop', 'ofclass', 'off', 'on',
- 'only', 'open', 'openable', 'or', 'orders', 'out_to', 'out_obj', 'parent',
- 'parse_name', 'player', 'plural', 'pluralname', 'print', 'print_ret',
- 'private', 'proper', 'provides', 'random', 'react_after', 'react_before',
- 'remove', 'replace', 'return', 'reverse', 'rfalse','roman', 'rtrue', 's_to',
- 's_obj', 'se_to', 'se_obj', 'sw_to', 'sw_obj', 'scenery', 'scope', 'score',
- 'scored', 'second', 'self', 'short_name', 'short_name_indef', 'sibling',
- 'spaces', 'static', 'string', 'style', 'supporter', 'switch', 'switchable',
- 'talkable', 'thedark', 'time_left', 'time_out', 'to', 'topic', 'transparent',
- 'true', 'underline', 'u_to', 'u_obj', 'visited', 'w_to', 'w_obj',
- 'when_closed', 'when_off', 'when_on', 'when_open', 'while', 'with',
+lex:add_rule('keyword', token(lexer.KEYWORD, word_match{
+ 'Abbreviate', 'Array', 'Attribute', 'Class', 'Constant', 'Default', 'End', 'Endif', 'Extend',
+ 'Global', 'Ifdef', 'Iffalse', 'Ifndef', 'Ifnot', 'Iftrue', 'Import', 'Include', 'Link',
+ 'Lowstring', 'Message', 'Object', 'Property', 'Release', 'Replace', 'Serial', 'StartDaemon',
+ 'Statusline', 'StopDaemon', 'Switches', 'Verb', --
+ 'absent', 'action', 'actor', 'add_to_scope', 'address', 'additive', 'after', 'and', 'animate',
+ 'article', 'articles', 'before', 'bold', 'box', 'break', 'cant_go', 'capacity', 'char', 'class',
+ 'child', 'children', 'clothing', 'concealed', 'container', 'continue', 'creature', 'daemon',
+ 'deadflag', 'default', 'describe', 'description', 'do', 'door', 'door_dir', 'door_to', 'd_to',
+ 'd_obj', 'e_to', 'e_obj', 'each_turn', 'edible', 'else', 'enterable', 'false', 'female', 'first',
+ 'font', 'for', 'found_in', 'general', 'give', 'grammar', 'has', 'hasnt', 'held', 'if', 'in',
+ 'in_to', 'in_obj', 'initial', 'inside_description', 'invent', 'jump', 'last', 'life', 'light',
+ 'list_together', 'location', 'lockable', 'locked', 'male', 'move', 'moved', 'multi',
+ 'multiexcept', 'multiheld', 'multiinside', 'n_to', 'n_obj', 'ne_to', 'ne_obj', 'nw_to', 'nw_obj',
+ 'name', 'neuter', 'new_line', 'nothing', 'notin', 'noun', 'number', 'objectloop', 'ofclass',
+ 'off', 'on', 'only', 'open', 'openable', 'or', 'orders', 'out_to', 'out_obj', 'parent',
+ 'parse_name', 'player', 'plural', 'pluralname', 'print', 'print_ret', 'private', 'proper',
+ 'provides', 'random', 'react_after', 'react_before', 'remove', 'replace', 'return', 'reverse',
+ 'rfalseroman', 'rtrue', 's_to', 's_obj', 'se_to', 'se_obj', 'sw_to', 'sw_obj', 'scenery', 'scope',
+ 'score', 'scored', 'second', 'self', 'short_name', 'short_name_indef', 'sibling', 'spaces',
+ 'static', 'string', 'style', 'supporter', 'switch', 'switchable', 'talkable', 'thedark',
+ 'time_left', 'time_out', 'to', 'topic', 'transparent', 'true', 'underline', 'u_to', 'u_obj',
+ 'visited', 'w_to', 'w_obj', 'when_closed', 'when_off', 'when_on', 'when_open', 'while', 'with',
'with_key', 'workflag', 'worn'
-})
+}))
-- Library actions.
-local action = token('action', word_match{
- 'Answer', 'Ask', 'AskFor', 'Attack', 'Blow', 'Burn', 'Buy', 'Climb', 'Close',
- 'Consult', 'Cut', 'Dig', 'Disrobe', 'Drink', 'Drop', 'Eat', 'Empty', 'EmptyT',
- 'Enter', 'Examine', 'Exit', 'Fill', 'FullScore', 'GetOff', 'Give', 'Go',
- 'GoIn', 'Insert', 'Inv', 'InvTall', 'InvWide', 'Jump', 'JumpOver', 'Kiss',
- 'LetGo', 'Listen', 'LMode1', 'LMode2', 'LMode3', 'Lock', 'Look', 'LookUnder',
- 'Mild', 'No', 'NotifyOff', 'NotifyOn', 'Objects', 'Open', 'Order', 'Places',
- 'Pray', 'Pronouns', 'Pull', 'Push', 'PushDir', 'PutOn', 'Quit', 'Receive',
- 'Remove', 'Restart', 'Restore', 'Rub', 'Save', 'Score', 'ScriptOff',
- 'ScriptOn', 'Search', 'Set', 'SetTo', 'Show', 'Sing', 'Sleep', 'Smell',
- 'Sorry', 'Squeeze', 'Strong', 'Swim', 'Swing', 'SwitchOff', 'SwitchOn',
- 'Take', 'Taste', 'Tell', 'Think', 'ThrowAt', 'ThrownAt', 'Tie', 'Touch',
- 'Transfer', 'Turn', 'Unlock', 'VagueGo', 'Verify', 'Version', 'Wake',
- 'WakeOther', 'Wait', 'Wave', 'WaveHands', 'Wear', 'Yes'
-})
+lex:add_rule('action', token('action', word_match{
+ 'Answer', 'Ask', 'AskFor', 'Attack', 'Blow', 'Burn', 'Buy', 'Climb', 'Close', 'Consult', 'Cut',
+ 'Dig', 'Disrobe', 'Drink', 'Drop', 'Eat', 'Empty', 'EmptyT', 'Enter', 'Examine', 'Exit', 'Fill',
+ 'FullScore', 'GetOff', 'Give', 'Go', 'GoIn', 'Insert', 'Inv', 'InvTall', 'InvWide', 'Jump',
+ 'JumpOver', 'Kiss', 'LetGo', 'Listen', 'LMode1', 'LMode2', 'LMode3', 'Lock', 'Look', 'LookUnder',
+ 'Mild', 'No', 'NotifyOff', 'NotifyOn', 'Objects', 'Open', 'Order', 'Places', 'Pray', 'Pronouns',
+ 'Pull', 'Push', 'PushDir', 'PutOn', 'Quit', 'Receive', 'Remove', 'Restart', 'Restore', 'Rub',
+ 'Save', 'Score', 'ScriptOff', 'ScriptOn', 'Search', 'Set', 'SetTo', 'Show', 'Sing', 'Sleep',
+ 'Smell', 'Sorry', 'Squeeze', 'Strong', 'Swim', 'Swing', 'SwitchOff', 'SwitchOn', 'Take', 'Taste',
+ 'Tell', 'Think', 'ThrowAt', 'ThrownAt', 'Tie', 'Touch', 'Transfer', 'Turn', 'Unlock', 'VagueGo',
+ 'Verify', 'Version', 'Wait', 'Wake', 'WakeOther', 'Wave', 'WaveHands', 'Wear', 'Yes'
+}))
+lex:add_style('action', lexer.styles.variable)
-- Identifiers.
-local identifier = token(l.IDENTIFIER, l.word)
+lex:add_rule('identifier', token(lexer.IDENTIFIER, lexer.word))
--- Operators.
-local operator = token(l.OPERATOR, S('@~=+-*/%^#=<>;:,.{}[]()&|?'))
+-- Strings.
+local sq_str = lexer.range("'")
+local dq_str = lexer.range('"')
+lex:add_rule('string', token(lexer.STRING, sq_str + dq_str))
-M._rules = {
- {'whitespace', ws},
- {'comment', comment},
- {'string', string},
- {'number', number},
- {'keyword', keyword},
- {'action', action},
- {'identifier', identifier},
- {'operator', operator},
-}
+-- Comments.
+lex:add_rule('comment', token(lexer.COMMENT, lexer.to_eol('!')))
-_styles = {
- {'action', l.STYLE_VARIABLE}
-}
+-- Numbers.
+local inform_hex = '$' * lexer.xdigit^1
+local inform_bin = '$$' * S('01')^1
+lex:add_rule('number', token(lexer.NUMBER, lexer.integer + inform_hex + inform_bin))
+
+-- Operators.
+lex:add_rule('operator', token(lexer.OPERATOR, S('@~=+-*/%^#=<>;:,.{}[]()&|?')))
-return M
+return lex