We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the SCSS Customize Group buffer, you cite the following example for the SCSS Sass Options variable:
'("--cache-location" "'/tmp/.sass-cache'")
Setting the variable to your example throws the following error:
scss-compile: Wrong type argument: sequencep, quote
Here's the backtrace:
Debugger entered--Lisp error: (wrong-type-argument sequencep quote) mapconcat(identity (quote ("--cache-location" "'/tmp/.sass-cache'")) " ") scss-compile() scss-compile-maybe() run-hooks(after-save-hook) basic-save-buffer() save-buffer(1) call-interactively(save-buffer nil nil) command-execute(save-buffer)
Running the full command through Emacs via M-!:
M-!
sass --cache-location '/tmp/.sass-cache' [input file] [output file]
Succeeds with no output.
The text was updated successfully, but these errors were encountered:
Setting scss-sass-options via customize-group inserts this into custom-set-variables
scss-sass-options
customize-group
custom-set-variables
'(scss-sass-options (quote (quote ("-E 'UTF-8'"))))
when it should be this:
'(scss-sass-options (quote ("-E 'UTF-8'")))
Sorry, something went wrong.
No branches or pull requests
In the SCSS Customize Group buffer, you cite the following example for the SCSS Sass Options variable:
Setting the variable to your example throws the following error:
Here's the backtrace:
Running the full command through Emacs via
M-!
:Succeeds with no output.
The text was updated successfully, but these errors were encountered: