Formatting of color scheme names on macOS
Opened this issue · 0 comments
ashikase commented
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:
Line 520 in 47961a8
I ended up replacing the line with a version using perl
, though there is probably a better solution:
perl -pe 's/\.\S*//g;' -e 's/-/ /g;' -e 's/\b\w\w/\u$&/g;'