diff options
Diffstat (limited to 'lua/lexers')
| -rw-r--r-- | lua/lexers/toml.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/toml.lua b/lua/lexers/toml.lua index 2584a03..35629fc 100644 --- a/lua/lexers/toml.lua +++ b/lua/lexers/toml.lua @@ -42,7 +42,7 @@ local keyword = token(l.KEYWORD, word_match{ local identifier = token(l.IDENTIFIER, l.word) -- Operators. -local operator = token(l.OPERATOR, S('#=+-,.{}[]()')) +local operator = token(l.OPERATOR, S('=+-,.{}[]()')) M._rules = { {'whitespace', ws}, |
