vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit e0d9dddeaaf70da6524de2199055cd3e889a538b parent 87e57d861dac1ab01fc8b208bf093673d53a70e5 Author: Marc André Tanner <mat@brain-dump.org> Date: Wed, 28 Feb 2018 12:22:10 +0100 lexer: add reference to ReasonML homepage Diffstat:
| M | lua/lexers/reason.lua | | | 3 | +-- |
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lua/lexers/reason.lua b/lua/lexers/reason.lua @@ -1,5 +1,5 @@ -- Copyright 2006-2017 Mitchell mitchell.att.foicica.com. See LICENSE. --- Reason LPeg lexer. +-- Reason (https://reasonml.github.io/) LPeg lexer. local l = require('lexer') local token, word_match = l.token, l.word_match @@ -39,7 +39,6 @@ local type = token(l.TYPE, word_match{ }) -- Functions. - local func = token(l.FUNCTION, word_match{ 'raise', 'invalid_arg', 'failwith', 'compare', 'min', 'max', 'succ', 'pred', 'mod', 'abs', 'max_int', 'min_int', 'sqrt', 'exp', 'log', 'log10', 'cos',