summaryrefslogtreecommitdiff
blob: 4893cdfbd9e695679aecd471f0eed88397c8abc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; cdrw site-lisp configuration

(setq load-path (cons "@SITELISP@" load-path))

(autoload 'cdrw "cdrw" "CDRW Creation" t)
(autoload 'cdrw-from-file "cdrw" "Load previously saved mark-file." t)

;; This binds the commands that open CDRW buffers to "C-c @ l" and
;; "C-c @ f" respectively. (the '@' character kinda looks like a CD
;; :).

(global-set-key "\C-c@" nil)
(global-set-key "\C-c@l" 'cdrw)
(global-set-key "\C-c@f" 'cdrw-from-file)