I know this has been brought up before, but I don’t see an answer for Sublime Text 3. When you have a CSS file open and you write a style declaration you get something like so:
h2 {padding: 10px;}
Some Front-end developers (myself included) prefer our CSS declarations to not include the extra space after the colon, like this:
h2 {padding:10px;}
By default Sublime Text 3 adds a space after the colon. Does anyone know of a solution to modify this so it just creates the colon and leaves out the space? Any help would be much appreciated.
Thanks!