/ Published in: Emacs Lisp
Bind opening .emacs and .abbrev_defs to commands. Not mine but I can't remember where I found it.
Expand |
Embed | Plain Text
;********************************************************** ;* ;* Bind frequently opened files and directories to ;* commands. ;* ;********************************************************** (defun dot-emacs () (interactive) (find-file "~/.emacs")) (defun abbrev-defs () (interactive) (find-file "~/.abbrev_defs"))
You need to login to post a comment.
