General cleanup & refactor; update TODO

This commit is contained in:
Henrik Lissner 2017-05-19 17:21:52 +02:00
parent d52ee9c3be
commit 656452df00
8 changed files with 36 additions and 36 deletions

View file

@ -2,7 +2,7 @@
;;;###autoload
(defun doom/toggle-fullscreen ()
"Toggle fullscreen Emacs."
"Toggle fullscreen Emacs (non-native on MacOS)."
(interactive)
(set-frame-parameter
nil 'fullscreen

View file

@ -257,15 +257,14 @@ properties."
(after! eshell
;; When eshell runs a visual command (see `eshell-visual-commands'), it spawns
;; a term buffer to run it in, but where it spawns it is the problem.
;; By tying buffer life to its process, we ensure that we land back in the
;; eshell buffer after term dies. May cause problems with short-lived
;; processes.
;; FIXME replace with a 'kill buffer' keybinding.
(setq eshell-destroy-buffer-when-process-dies t)
;; When eshell runs a visual command (see `eshell-visual-commands'), it spawns
;; a term buffer to run it in, but where it spawns it is the problem...
(defun doom*eshell-undedicate-popup (orig-fn &rest args)
"Force spawned term buffer to share with the eshell popup (if necessary)."
(when (doom-popup-p)