sublime-text-2-ini icon indicating copy to clipboard operation
sublime-text-2-ini copied to clipboard

INI syntax highlighting for Sublime Text 2

Results 10 sublime-text-2-ini issues
Sort by recently updated
recently updated
newest added

There's no canonical definition of what's the INI syntax, but Python's `ConfigParser` supports comments after section headers: ```ini [section] ; comment ``` This PR adds support for them.

It would be nice if the INI syntax allowed to fold (collapse) all the lines underneath s section

Hi! .pbk is for VPN configuration files, which have a INI syntax. You could add that to the default extension.

Previously, \" would be matched as a literal backslash and a quote. This allows \" to be matched as an escaped double quote. This is useful for INI parsers that...

Multiline options containing equality signs are highlighted like multiple options. ![screen shot 2014-09-09 at 11 51 55](https://cloud.githubusercontent.com/assets/900404/4199557/039b8b6a-3807-11e4-8d06-0523498b8dc2.png) It looks like changing line 112 in INI.tmLanguage fixes the problem: ``` ^((["']?)(\S+?)(\2)\s(=))?\s((["']?)(.*?)(\7))\s(;.*)?$\n?...

You may want to add " : " as a delimiter. I extracted the package and did it on my machine. I'm sure others would benefit. Thanks for the great...

had to put ^(;|#).*$\n? on line 24 in order for comments that start with # to show up as comments

it would be nice to highlight spaces at the end of the line as this might be asource for errors.