Rewrite popup handling + new minor mode: doom-hide-mode-line-mode

This commit is contained in:
Henrik Lissner 2016-06-05 23:08:46 -04:00
parent 774d61be68
commit 8a666aedfe
15 changed files with 366 additions and 379 deletions

View file

@ -1,17 +1,17 @@
;;; defuns-window.el --- library for acting on windows
;;;###autoload
(defun doom/evil-window-split ()
(defun doom*evil-window-split (orig-fn &rest args)
(interactive)
(doom/neotree-save
(call-interactively 'evil-window-split)
(apply orig-fn args)
(evil-window-down 1)))
;;;###autoload
(defun doom/evil-window-vsplit ()
(defun doom*evil-window-vsplit (orig-fn &rest args)
(interactive)
(doom/neotree-save
(call-interactively 'evil-window-vsplit)
(apply orig-fn args)
(evil-window-right 1)))
;;;###autoload