savage-lands/share/readmes/sass.md

22 lines
624 B
Markdown
Raw Normal View History

2025-04-17 00:41:48 +03:00
##Sass
### How to set up sass watch with multiple directories
````
sass -I share/media/projectwide_sass_files
--watch code/apps/sassdir:code/apps/cssdir
````
### How to get vim to work with a sass file include
````
let g:syntastic_sass_sass_args="
-I /Full/share/media/projectwide_sass_files"
````
you can also add multiple directories to the -I directive. Separate them with a space
[fixing syntastic check args](http://stackoverflow.com/questions/29041876/fixing-syntasticcheck-bootstrap-error-vim-syntastic-plugin)
[syntastic manual](https://github.com/vim-syntastic/syntastic/blob/master/doc/syntastic.txt)