Add dotspacemacs-fullscreen-at-startup which start Emacs fullscreen
Work only with Emacs 24.4 Default value is t You'll have to update your ~/.spacemacs to get this functionality
This commit is contained in:
parent
156d16c2ef
commit
733be77361
1 changed files with 6 additions and 0 deletions
|
@ -87,6 +87,12 @@
|
|||
;; (lambda ()
|
||||
;; (set-window-margins (car (get-buffer-window-list (current-buffer) nil t)) 0 0)))
|
||||
|
||||
;; Emacs 24.4 new features
|
||||
(unless (version< emacs-version "24.4")
|
||||
(if ((and (boundp 'dotspacemacs-fullscreen-at-startup)
|
||||
dotspacemacs-fullscreen-at-startup))
|
||||
(toggle-fullscreen)))
|
||||
|
||||
;; ---------------------------------------------------------------------------
|
||||
;; Session
|
||||
;; ---------------------------------------------------------------------------
|
||||
|
|
Reference in a new issue