summaryrefslogtreecommitdiff
path: root/context/data/scite/lexers/scite-context-lexer-lua.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2012-04-23 19:20:16 +0300
committerMarius <mariausol@gmail.com>2012-04-23 19:20:16 +0300
commit4a3d6c259183d2e619d39c4f273d7c5489356113 (patch)
tree563f7ba81d1d601d43062198b82049be63df9e0c /context/data/scite/lexers/scite-context-lexer-lua.lua
parent959400a677b3eb6ff6513a750be6dde943e62c36 (diff)
downloadcontext-4a3d6c259183d2e619d39c4f273d7c5489356113.tar.gz
beta 2012.04.23 15:58
Diffstat (limited to 'context/data/scite/lexers/scite-context-lexer-lua.lua')
-rw-r--r--context/data/scite/lexers/scite-context-lexer-lua.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/context/data/scite/lexers/scite-context-lexer-lua.lua b/context/data/scite/lexers/scite-context-lexer-lua.lua
index 4f48fb2a5..0ace7afc6 100644
--- a/context/data/scite/lexers/scite-context-lexer-lua.lua
+++ b/context/data/scite/lexers/scite-context-lexer-lua.lua
@@ -142,7 +142,7 @@ local identifier = token("default",validword)
----- operator = token("special", P('..') + P('~=') + S('+-*/%^#=<>;:,.{}[]()')) -- maybe split off {}[]()
----- operator = token("special", S('+-*/%^#=<>;:,{}[]()') + P('..') + P('.') + P('~=') ) -- maybe split off {}[]()
-local operator = token("special", S('+-*/%^#=<>;:,{}[]().') + P('~=') )
+local operator = token("special", S('+-*/%^#=<>;:,{}[]().') + P('~=') ) -- no ^1 because of nested lexers
local structure = token("special", S('{}[]()'))