We Recommend

The Rails Way The Rails Way
Now, for the first time, there’s a comprehensive, authoritative guide to building production-quality software with Rails. Pioneering Rails developer Obie Fernandez and a team of experts illuminate the entire Rails API, along with the Ruby idioms, design approaches, libraries, and plug-ins that make Rails so valuable.


Posted By

noah on 06/01/07


Tagged

configuration emacs utilities editing


Versions (?)


commands for opening .emacs and .abbrev_defs


Published in: Emacs Lisp 


Bind opening .emacs and .abbrev_defs to commands. Not mine but I can't remember where I found it.

  1. ;**********************************************************
  2. ;*
  3. ;* Bind frequently opened files and directories to
  4. ;* commands.
  5. ;*
  6. ;**********************************************************
  7.  
  8. (defun dot-emacs ()
  9. (interactive)
  10. (find-file "~/.emacs"))
  11.  
  12. (defun abbrev-defs ()
  13. (interactive)
  14. (find-file "~/.abbrev_defs"))

Report this snippet 

You need to login to post a comment.