aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs
diff options
context:
space:
mode:
authorMichaelTheShifter <[email protected]>2016-07-05 10:43:43 -0400
committerMichaelTheShifter <[email protected]>2016-07-05 10:43:43 -0400
commitad0e84c4be1411321e36a9f6ab022195c0d006b3 (patch)
treefc743792ec1251a49e1e8dda32ca9a29347ad9ee /source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs
parenta0b001b25f001d1df767987528980704d3d40347 (diff)
downloadshiftos-c-_theultimatehacker-ad0e84c4be1411321e36a9f6ab022195c0d006b3.tar.gz
shiftos-c-_theultimatehacker-ad0e84c4be1411321e36a9f6ab022195c0d006b3.tar.bz2
shiftos-c-_theultimatehacker-ad0e84c4be1411321e36a9f6ab022195c0d006b3.zip
More Lua work
including making save_file(filters, func) and open_file(filters, func) do the same as fileskimmer_open and fileskimmer_save
Diffstat (limited to 'source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs')
-rw-r--r--source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs b/source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs
index 4e82af7..1139096 100644
--- a/source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs
+++ b/source/WindowsFormsApplication1/Controls/SyntaxHighlighter.cs
@@ -76,7 +76,7 @@ namespace ShiftOS
switch (lang)
{
case SyntaxSettings.Language.Lua:
- var kw = new List<string>() { "function", "local", "return", "if", "else", "elseif", "while", "true", "do", "next", "end", "for", "pairs", "in", "{", "}", "false" };
+ var kw = new List<string>() { "function", "local", "return", "if", "else", "elseif", "while", "true", "do", "next", "end", "for", "pairs", "in", "{", "}", "false", "=", "+", "-", "/", "*", "..", "," };
Settings.Keywords.Clear();
foreach (var k in kw)
{