aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/csharp.lua
diff options
context:
space:
mode:
authormitchell <unknown>2018-04-07 15:54:47 -0400
committermitchell <unknown>2018-04-07 15:54:47 -0400
commit6dc8a9652f08ea7eb0d9835939bdb7735b0d1d89 (patch)
treec79f1d6ae72fe2dd2acf6407f1580e40465fee77 /lexlua/csharp.lua
parent4c1f85c2a05b9e099c3cccb59b04f9b7ce83f93c (diff)
downloadscintilla-mirror-6dc8a9652f08ea7eb0d9835939bdb7735b0d1d89.tar.gz
lexlua: Added 'var' keyword for C#.
Diffstat (limited to 'lexlua/csharp.lua')
-rw-r--r--lexlua/csharp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/csharp.lua b/lexlua/csharp.lua
index 4263c6672..b0b39d1b4 100644
--- a/lexlua/csharp.lua
+++ b/lexlua/csharp.lua
@@ -17,7 +17,7 @@ lex:add_rule('keyword', token(lexer.KEYWORD, word_match[[
private protected public ref sealed static readonly unsafe virtual volatile
add as assembly base break case catch checked continue default do else finally
for foreach get goto if in is new remove return set sizeof stackalloc super
- switch this throw try typeof unchecked value void while yield
+ switch this throw try typeof unchecked value var void while yield
null true false
]]))