diff --git a/emacs/init.org b/emacs/init.org index 3a1f712..386d960 100644 --- a/emacs/init.org +++ b/emacs/init.org @@ -1485,7 +1485,6 @@ #+BEGIN_SRC emacs-lisp (global-set-key (kbd "C-c d c") 'desktop-clear) - (global-set-key (kbd "C-c d d") 'desktop-change-dir) (global-set-key (kbd "C-c d s") 'desktop-save) #+END_SRC @@ -1555,6 +1554,16 @@ (add-hook 'emacs-startup-hook 'global-diff-hl-mode) #+END_SRC +* Enable desktop-registry + + The =desktop-regsitry= package is one I wrote to ease switching + between desktops. + + #+BEGIN_SRC emacs-lisp + (oni:eval-after-init (desktop-registry-auto-register)) + (global-set-key (kbd "C-c d d") 'desktop-registry-change-desktop) + #+END_SRC + * All the rest This still needs to be sorted out and documented, haven't had time