vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 7568fb00e3bd7b518448700d15139331716f185d parent d913154ab4189e32773b5ff08042747f2ba826ac Author: Chloe <toast@programmer.net> Date: Mon, 25 Jul 2016 01:43:14 -0400 Fix filetype table link in lexers/README.md `vis.filetypes` can be found on [line 72 of `vis.lua`](https://github.com/martanne/vis/blob/master/vis.lua#L72), but is not present at all in lexer.lua. Fix `lexers/README.md` to avoid further confusion. Diffstat:
| M | lexers/README.md | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lexers/README.md b/lexers/README.md @@ -32,7 +32,7 @@ script as described in the To enable auto syntax highlighting when opening a file you can associate your new lexer with a set of file extensions by adding a corresponding entry into -the table found at the end of the [lexer.lua](lexer.lua) file. +the table found at the end of the [vis.lua](/vis.lua) file. Changes to existing lexers should also be sent upstream for consideration.