clojure - How to prevent messy windows after error in emac-live -
i'm trying familiar emacs , clojure , working out pretty well.. it's everytime clojure error, close emacs-window except 1 error occured , instead show me giant empty window of "popwin-dummy". can't quite see how that's supposed me fixing bug... can tell me how disable behaviour? have nice day!
as general protection against "emacs messed window configuration" occurrences, add following init file:
(winner-mode 1)
you can toggle current session m-x winner-mode
then whenever window configuration unexpectedly changed, use c-c<left> call winner-undo
(which can repeatedly if necessary).
c-c<right> takes recent configuration (immediately, rather step-by-step).
Comments
Post a Comment