public
Fork of technomancy/emacs-starter-kit
Description: All the code you need to get started, with an emphasis on dynamic languages.
Homepage:
Clone URL: git://github.com/topfunky/emacs-starter-kit.git
emacs-starter-kit / starter-kit-registers.el
100644 17 lines (13 sloc) 0.652 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; starter-kit-registers.el --- Set up registers
;;
;; Part of the Emacs Starter Kit
 
;; Registers allow you to jump to a file or other location
;; quickly. Use C-x r j followed by the letter of the register (i for
;; init.el, r for this file) to jump to it.
 
;; You should add registers here for the files you edit most often.
 
(dolist (r `((?i (file . ,(concat dotfiles-dir "init.el")))
             (?b (file . ,(concat dotfiles-dir "starter-kit-bindings.el")))
             (?r (file . ,(concat dotfiles-dir "starter-kit-registers.el")))))
  (set-register (car r) (cadr r)))
 
(provide 'starter-kit-registers)
;;; starter-kit-registers.el ends here