vis: implement :set cursorline
[vis.git] / lexers / template.txt
blob4f8c560d9623c3a41bc6049687038d994385faf7
1 -- ? LPeg lexer.
3 local l = require('lexer')
4 local token, word_match = l.token, l.word_match
5 local P, R, S = lpeg.P, lpeg.R, lpeg.S
7 local M = {_NAME = '?'}
9 -- Whitespace.
10 local ws = token(l.WHITESPACE, l.space^1)
12 M._rules = {
13   {'whitespace', ws},
16 M._tokenstyles = {
20 return M