Skip to content

Commit

Permalink
Add 'READ ONLY' keyword, bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Crake committed Feb 16, 2016
1 parent 161e932 commit 3c25146
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions SqlSyntaxHighlighting/SqlClassifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ class SqlClassifier : IClassifier
private readonly List<string> keywords = new List<string> {
"SELECT", "INSERT", "DELETE", "UPDATE",
"INTO", "VALUES", "TRUNCATE", "DISTINCT", "TOP", "WITH",
"FROM", "JOIN", "INNER JOIN", "OUTER JOIN", "LEFT OUTER JOIN", "RIGHT OUTER JOIN", "LEFT JOIN", "RIGHT JOIN", "CROSS JOIN", "USING",
"FROM", "JOIN", "INNER JOIN", "OUTER JOIN", "LEFT OUTER JOIN", "RIGHT OUTER JOIN", "LEFT JOIN", "RIGHT JOIN", "CROSS JOIN",
"UNION", "EXCEPT",
"WHERE", "LIKE", "BETWEEN", "HAVING", "EXISTS", "RETURNING",
"WHERE", "LIKE", "BETWEEN", "HAVING", "EXISTS",
"ORDER BY", "ASC", "DESC", "OVER", "GROUP BY",
"ON", "IN", "IS", "NOT", "AS", "AND", "OR", "ALL", "ANY",
"CREATE", "ALTER", "DROP",
"TABLE", "FUNCTION", "PROCEDURE", "VIEW", "SCHEMA",
"DECLARE", "SET",
"DECLARE", "SET", "READ ONLY",
"IF", "BEGIN", "THEN", "ELSE", "END", "FOR", "WHILE", "NULL",
"TRANSACTION", "COMMIT", "ROLLBACK",
"EXEC", "RETURN", "RETURNS", "PRINT", "USE",
"EXEC", "RETURN", "RETURNS", "PRINT", "USE", "USING", "RETURNING",

"BIGINT", "NUMERIC", "BIT", "SMALLINT", "DECIMAL", "SMALLMONEY", "INT", "TINYINT", "MONEY", "FLOAT", "REAL",
"DATE", "DATETIMEOFFSET", "DATETIME2", "SMALLDATETIME", "DATETIME", "TIME", "TIMESTAMP",
Expand Down
2 changes: 1 addition & 1 deletion SqlSyntaxHighlighting/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="SqlSyntaxHighlighting">
<Name>SQL Syntax Highlighting</Name>
<Author>Fabian de Groot</Author>
<Version>0.1.2.0</Version>
<Version>0.1.5.0</Version>
<Description xml:space="preserve">Adds basic SQL syntax highlighting (keywords, functions and variables) to string literals.</Description>
<Locale>1033</Locale>
<SupportedProducts>
Expand Down

0 comments on commit 3c25146

Please sign in to comment.