summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-06-05 01:36:53 +0200
committerGravatar Tom Willemse2013-06-05 01:36:53 +0200
commitc11ca7d966f8783c7b6b43cc6bfaec793fcfa464 (patch)
tree36f001cf5df129a67159c6085744ad7e853d6186 /emacs
parente3a7efa79f99a4cb934138662e7d33618dc3bd5c (diff)
downloaddotfiles-c11ca7d966f8783c7b6b43cc6bfaec793fcfa464.tar.gz
dotfiles-c11ca7d966f8783c7b6b43cc6bfaec793fcfa464.zip
Use C-c d d for desktop-registry, not desktop
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.org11
1 files changed, 10 insertions, 1 deletions
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