From: Mark Wooding Date: Sat, 27 Jun 2020 11:59:22 +0000 (+0100) Subject: dot/emacs: Turn on `winner-mode' to keep track of window configuration. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/faaae8da20fcc8960621009c0884034992ad11a7 dot/emacs: Turn on `winner-mode' to keep track of window configuration. --- diff --git a/dot/emacs b/dot/emacs index fa934aa..ff4843f 100644 --- a/dot/emacs +++ b/dot/emacs @@ -177,6 +177,11 @@ (setq calc-settings-file "~/.emacs-calc") (load calc-settings-file) +;; Saving window-configuration state. + +(or mdw-fast-startup + (winner-mode 1)) + ;; Some mail and news configuration. (setq mail-from-style 'angles @@ -720,6 +725,8 @@ (global-set-key [?\C-c ?w ?j] 'windmove-down) (global-set-key [?\C-c ?w ?k] 'windmove-up) (global-set-key [?\C-c ?w ?l] 'windmove-right) + (global-set-key [?\C-c ?w ?r] 'winner-redo) + (global-set-key [?\C-c ?w ?u] 'winner-undo) (global-set-key [?\C-c ?w ?w] 'mdw-set-frame-width) (global-set-key [?\C-c ?w up] 'windmove-up) (global-set-key [?\C-c ?w down] 'windmove-down)