badsyntax / SassBeautify

[not maintained] A Sublime Text plugin that beautifies Sass files.
https://github.com/badsyntax/SassBeautify
MIT License
143 stars 13 forks source link

SassBeautify conflitcs with CodeKit in Sublime Text 2 #82

Open agispas opened 9 years ago

agispas commented 9 years ago

I've just installed SassBeautify and whenever I'm trying to beautify a .scss file I get this error: "[Errno 2] No such file or directory".

I've tried to do this, as mentioned in the SassBeautify documentation:

Follow the steps below:

Open up terminal

Run: echo $PATH

Copy the entire PATH into the 'path' setting

Run: echo $GEM_PATH

Copy the entire GEM_PATH into the 'gemPath' setting

But when I'm typing "echo $GEM_PATH" in my terminal I don't see anything. Just a blank space.

I'm using CodeKit for the SASS compiler.

Any ideas on how can I fix this?

HaunGO commented 8 years ago

I am having the EXACT same issue.

Le-future commented 8 years ago

I'm getting exactly the same problem since I upgraded my Macbook to El Capitaaan.

Did you find a solution?

HaunGO commented 8 years ago

Unfortunately, I did not find a solution.

BkThompson-zz commented 8 years ago

Has anyone found a solution for this? I am experiencing the exact same problem, but also I am not sure what the "path setting" is and where its located? "Copy the entire PATH into the 'path' setting". Can i get more details.

matriplett commented 8 years ago

Same issue here.. I get nothing when using: echo $GEM_PATH

Le-future commented 7 years ago

Still getting the same problem, any idea?

ramakay commented 7 years ago

echo $GEM_PATH is blank for me as well.

Liquir-ice commented 7 years ago

This solution fixed my problem

$ which sass-convert
/usr/local/bin/sass-convert

# Change the sublime sassbeautify user preference
{
  "indent": 4,
  "dasherize": false,
  "old": false,
  "path": "/usr/local/bin/",
  "gemPath": false,
  "beautifyOnSave": true,
  "inlineComments": false,
  "useSingleQuotes": false
}