mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-15 13:23:42 -05:00
11 lines
220 B
EmacsLisp
11 lines
220 B
EmacsLisp
;;;###autoload
|
|
(defun narf/popwin-toggle ()
|
|
(interactive)
|
|
(if (popwin:popup-window-live-p)
|
|
(popwin:close-popup-window)
|
|
(popwin:popup-last-buffer)))
|
|
|
|
|
|
(provide 'defuns-popwin)
|
|
;;; defuns-popwin.el ends here
|