Add "else" to the list of keywords for dealing with command syntax

This commit is contained in:
Alexander Luzgarev 2018-04-05 09:36:52 +02:00
parent 3d31b2c04b
commit 94c2d75ad8

View File

@ -387,7 +387,7 @@ namespace Lexer
Keywords = new HashSet<string>
{
"for", "if", "function", "while", "case", "try", "catch", "end",
"switch", "classdef", "elseif", "persistent",
"switch", "classdef", "elseif", "persistent", "else"
};
}