Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I am using this settings. Some things you've already done, but I am writing all the steps I did and that work for me. I hope it can help you:</p> <p>1- Install <a href="http://nodejs.org/download">node.js</a><br/> 2- Install Less with <code>npm install -g less</code><br/> 3- Install <a href="https://github.com/danro/LESS-sublime">LESS</a> syntax for Sublime<br/> 4- Install <a href="https://github.com/timdouglas/sublime-less2css">Less2css</a> package<br/></p> <p>Restart Sublime (or restart Windows for the new installed variable path take effect. I'm not sure if adding a new path on windows works without restart), go to <code>Preferences &gt; Package Settings &gt; Less2css &gt; Settings - User</code> and put this settings:</p> <pre class="lang-json prettyprint-override"><code>{ "autoCompile": true, "lessBaseDir": "./", "main_file": "bootstrap.less", "minify": true, "outputDir": "auto", "outputFile": "" } </code></pre> <p>In this case I'm using Twitter Bootstrap with the structure below and when I save less/bootstrap.less or any other less file in the folder, the plugin auto compile everything in css/bootstrap.css minified (optional, check the <a href="https://github.com/timdouglas/sublime-less2css">project Github page</a> for documentation).</p> <pre><code>assets/ ├── css/ │ ├── bootstrap.css └── less/ ├── bootstrap.less ├── ... └── variables.less </code></pre> <p>This settings make the work faster with Less because you don't need to compile manually or use the less.js file to compile on client side. And you just need to save, don't need to install Less-build or other build tool.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload