SublimeKSP
                                
                                 SublimeKSP copied to clipboard
                                
                                    SublimeKSP copied to clipboard
                            
                            
                            
                        {} compile as comments even when used in text strings
This is not supposed to happen! Example:
set_text(Label,"First section: { " & var & " } | The rest")
Actually compiles as:
set_text(Label,"First section:  | The rest")
Not cool!
Also, I'm having an issue with block comments not toggling on/off correctly... It just keeps adding block comments. Sometimes a restart of Sublime Text helps, but not always...
This was not a problem in vanilla SublimeKSP...
Very strange... I'll take a look at this when I get a moment.
Here's the regex for the {} comments: https://github.com/nojanath/SublimeKSP/blob/9132114ff504f04646208130ed6fa5355f61c7b6/ksp_compiler3/ksp_compiler.py#L37
Unless I'm mistaken, it's only the character directly before the { that is checked if it is a quote. I think we'd need a more complicated regex to do proper checking for comments.
Not sure about the block comments toggle! The only thing that is added by KSP to enable this is the TM_COMMENT_START_2 and TM_COMMENT_END_2 in the tmpreferences file.