subnixr / minimal

A minimal zsh theme
GNU General Public License v3.0
259 stars 23 forks source link

Make Magic Enter OSX compatible #2

Closed chaucerbao closed 8 years ago

chaucerbao commented 8 years ago

I believe the ls command in the OSX version differs from the GNU version, so the Magic Enter is producing this error:

ls: illegal option -- -
usage: ls [-ABCFGHLOPRSTUWabcdefghiklmnopqrstuwx1] [file ...]

The issue is with the --colors argument. In OSX, the argument is -G.

https://github.com/subnixr/minimal/blob/master/minimal.zsh#L109

Just wanted to see if you were willing to do some sort of OS detection to use the appropriate arguments.

subnixr commented 8 years ago

I believe the ls command in the OSX version differs from the GNU version

Yup, see #1

Just wanted to see if you were willing to do some sort of OS detection to use the appropriate arguments.

Hopefully a uname should do the trick. I will try to look into this as soon as possible.

subnixr commented 8 years ago

c714210 should fix it. Unfortunately, I don't have a OSX machine to test it right now

chaucerbao commented 8 years ago

Looking good!