Simplify session persistence

This commit is contained in:
Henrik Lissner 2021-07-12 16:22:30 -04:00
parent 5c741cb65f
commit 6672ee5cf5

View file

@ -63,18 +63,6 @@
((error "No session backend to load session with"))))
;;
;;; Command line switch
;;;###autoload
(defun doom-restore-session-handler (&rest _)
"TODO"
(add-hook 'window-setup-hook #'doom-load-session 100))
;;;###autoload
(add-to-list 'command-switch-alist (cons "--restore" #'doom-restore-session-handler))
;;
;;; Commands
@ -140,4 +128,4 @@
(append (if debug (list "--debug-init"))
(when (boundp 'chemacs-current-emacs-profile)
(list "--with-profile" chemacs-current-emacs-profile))
(list "--restore")))))
(list "--eval" "(add-hook 'window-setup-hook #'doom-load-session 100)")))))