From 94d71cda83e57b01b80be0b95c993ba7b730cd3f Mon Sep 17 00:00:00 2001 From: Caleb Meyer Date: Fri, 29 Apr 2016 09:28:43 -0500 Subject: [PATCH] Fix notes on wrong powerline separators I recently uninstalled railwaycat's emacs-mac-port (the old recommendation for OS X) and installed @d12frosted's emacs-plus. When I did that my powerline separators became just slightly off in color from the rest of the spaceline. Asking on chat yielded that ns-use-srgb-colorspace is set to true by default but should be nil. --- README.md | 7 +++++++ doc/FAQ.org | 8 -------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e6ffe3e9d..a9a925a45 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,13 @@ it just defines some additional options like `--with-spacemacs-icon`. also recommended to add the [osx layer][] to your [dotfile][]. Install instructions are available in the [osx layer][] documentation. +*Note:* if the powerline separators on the spaceline are a different (less +saturated) color than the rest of the line, you can add +```elisp +(setq ns-use-srgb-colorspace nil) +``` +to your dotspacemacs/user-config section of your dotfile to fix it. + ### Windows Good quality builds can be found [on this page][emacs-for-windows]. It is diff --git a/doc/FAQ.org b/doc/FAQ.org index 405cc0b28..c51857f48 100644 --- a/doc/FAQ.org +++ b/doc/FAQ.org @@ -47,8 +47,6 @@ - [[#why-is-there-no-spacemacs-logo-in-the-startup-buffer][Why is there no Spacemacs logo in the startup buffer?]] - [[#why-are-all-packages-unavailable][Why are all packages unavailable?]] - [[#the-powerline-isnt-shown-correctly-when-spacemacs-is-used-within-putty][The powerline isn't shown correctly when Spacemacs is used within =PuTTY=]] - - [[#os-x][OS X]] - - [[#why-are-the-powerline-colors-not-correct-on-os-x][Why are the powerline colors not correct on OS X?]] * Common ** Which version of Spacemacs am I running? @@ -553,9 +551,3 @@ directory as Emacs. See [[https://www.gnu.org/software/emacs/manual/html_mono/em ** The powerline isn't shown correctly when Spacemacs is used within =PuTTY= You can follow [[http://mschulte.nl/posts/using-powerline-in-PuTTY.html][this explanation]] explaining how to correct this. - -* OS X -** Why are the powerline colors not correct on OS X? -This is a [[https://github.com/milkypostman/powerline/issues/54][known issue]] as of Emacs 24.4 due to =ns-use-srgb-colorspace= -defaulting to true. It is recommended to use the [[http://github.com/railwaycat/homebrew-emacsmacport][emacs-mac-port]] build. See the -install section in the [[file:../README.md][README]] for more details.