Emacs: Remove toggle-window-dedicated I don’t think I ever used it
Alan Pearce alan@alanpearce.co.uk
Thu, 24 Mar 2016 23:10:13 +0100
1 files changed, 0 insertions(+), 16 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -848,22 +848,6 @@ (if (boundp 'ns-pop-up-frames) (setq ns-pop-up-frames nil)) #+END_SRC -A dedicated window always keeps the same buffer in view. - -#+BEGIN_SRC emacs-lisp -(defun toggle-window-dedicated () - "Toggle whether the current active window is dedicated or not" - (interactive) - (message - "Window '%s' is %s" - (current-buffer) - (if (let ((window (get-buffer-window (current-buffer)))) - (set-window-dedicated-p window - (not (window-dedicated-p window)))) - "dedicated" - "normal"))) -#+END_SRC - ** winner Undo, for window-based commands.