Skip to content

Instantly share code, notes, and snippets.

@sshirokov
Created June 22, 2009 21:06
Show Gist options
  • Save sshirokov/134187 to your computer and use it in GitHub Desktop.
Save sshirokov/134187 to your computer and use it in GitHub Desktop.
(defun toggle-dedicate ()
(interactive)
(set-window-dedicated-p (selected-window)
(not (window-dedicated-p (selected-window)))))
(global-set-key [(control c) (shift d)] 'toggle-dedicate)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment