atom / language-sql

SQL package for Atom
Other
38 stars 50 forks source link

Add support for case statements #5

Closed abahgat closed 10 years ago

abahgat commented 10 years ago

Add highlight for statements that look like the following (supported by Transact-SQL and PL/SQL, among others):

CASE [ expression ]
   WHEN condition_1 THEN result_1
   WHEN condition_2 THEN result_2
   ...
   WHEN condition_n THEN result_n
   ELSE result
END
kevinsawicki commented 10 years ago

Cool, thanks for adding this