Simpless (popup window after automatical compile LESS to CSS) -


i'm using phpstorm 6 , simpless compile less css.

i have set less file watcher in ide. fine , compiling works.

the problem when make changes .less file, ide runs simpless program , window of simpless program popup every time on running programs. it's annoying.

so, there chance disable simpless popup window?

thanks.

simpless gui application not designed used command line compiler. file watcher expects command line interface compiler.

on windows can use less compiler provided node.js less module.

  1. install node.js if don't have already
  2. npm install -g less
  3. add file watcher in phpstorm, path compiler should c:\users\<user>\appdata\roaming\npm\lessc.cmd or c:\program files (x86)\nodejs\lessc.cmd. if remove existing less file watcher , again, phpstorm should find compiler path automatically.

Comments