joeferraro / MavensMate-SublimeText

Sublime Text plugin for Salesforce developers. Aims to replace the Eclipse-based Force.com IDE.
http://mavensmate.com
GNU General Public License v3.0
290 stars 119 forks source link

Inline comments inside SOQL statements don't work #816

Closed watzon closed 7 years ago

watzon commented 8 years ago

Syntax highlighting breaks for comments that are within SOQL statements. An example case would be

List<Account> accounts = [
    SELECT
        Id,          // This is a break
        Name     // This will break too
    FROM Account
];

(seems as though Github's highlighting gets it right)