11 lines
241 B
EmacsLisp
11 lines
241 B
EmacsLisp
;;; defuns-popwin.el
|
|
|
|
;;;###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
|