Rewrite popup handling + new minor mode: doom-hide-mode-line-mode
This commit is contained in:
parent
774d61be68
commit
8a666aedfe
15 changed files with 366 additions and 379 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue