all repos — archive/dotfiles @ bebf6f939455755b24528b64c171ce453c3a3e03

Superseded by nixfiles

Emacs: Configure window-divider-mode on macOS

It didn't work on previous releases using the NextStep window system,
but with a new version of emacs-mac-port, it's good.  Fortunately,
Emacs knows the difference: window-system is either `ns` or `mac`
Alan Pearce alan@alanpearce.eu
Tue, 23 May 2017 15:49:26 +0200
commit

bebf6f939455755b24528b64c171ce453c3a3e03

parent

32ff2aca5ff86a2a024948dcb135ae946f9eba17

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -311,7 +311,8 @@ (show-mode-line))) 
 (add-to-list 'default-frame-alist '(border-width . 0))
 (add-to-list 'default-frame-alist '(internal-border-width . 0))
-(when (eq window-system 'x)
+(when (or (eq window-system 'x)
+          (eq window-system 'mac))
   (setq window-divider-default-bottom-width 1
         window-divider-default-right-width 1
         window-divider-default-places t)