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
On macOS, the names of the available color schemes are not properly formatted, as seen in this screenshot:
The problem is that the following line does not work with the BSD version of sed that comes with macOS:
sed
Gogh/gogh.sh
Line 520 in 47961a8
I ended up replacing the line with a version using perl, though there is probably a better solution:
perl
perl -pe 's/\.\S*//g;' -e 's/-/ /g;' -e 's/\b\w\w/\u$&/g;'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On macOS, the names of the available color schemes are not properly formatted, as seen in this screenshot:
The problem is that the following line does not work with the BSD version of
sed
that comes with macOS:Gogh/gogh.sh
Line 520 in 47961a8
I ended up replacing the line with a version using
perl
, though there is probably a better solution:The text was updated successfully, but these errors were encountered: