csscomb / vim-csscomb

CSScomb plugin for Vim. Tool for sorting CSS properties in specific order.
csscomb.com
134 stars 18 forks source link

Fix vim configuration for auto-combing #11

Closed GertjanReynaert closed 9 years ago

GertjanReynaert commented 9 years ago

I couldn't get the auto-comb config working until I removed the <CR> after the :CSScomb command.

Some resource for more info: http://learnvimscriptthehardway.stevelosh.com/chapters/12.html

The final part of the command is the command we want to run when the event fires. This is pretty self-explanatory, except for one catch: you can't use special characters like <cr> in the command. 
tonyganch commented 9 years ago

@GertjanReynaert, thank you!