show/hide this revision's text 2 added 75 characters in body

I have this to change yes or no prompt to y or n prompts:

(fset 'yes-or-no-p 'y-or-n-p)

I have these to start Emacs without so much "fanfare" which I got from this question.

(setq inhibit-startup-echo-area-message t)
(setq inhibit-startup-message t)

And this Steve Yegge's function to rename a file that you're editing along with its corresponding buffer:

(defun rename-file-and-buffer (new-name)
  "Renames both current buffer and file it's visiting to NEW-NAME."
  (interactive "sNew name: ")
  (let ((name (buffer-name))
 (filename (buffer-file-name)))
    (if (not filename)
 (message "Buffer '%s' is not visiting a file!" name)
      (if (get-buffer new-name)
   (message "A buffer named '%s' already exists!" new-name)
 (progn
   (rename-file name new-name 1)
   (rename-buffer new-name)
   (set-visited-file-name new-name)
   (set-buffer-modified-p nil))))))
show/hide this revision's text 1

I have this to change yes or no prompt to y or n prompts:

(fset 'yes-or-no-p 'y-or-n-p)

I have these to start Emacs without so much "fanfare" which I got from this question.

(setq inhibit-startup-echo-area-message t)
(setq inhibit-startup-message t)

And this function to rename a file that you're editing along with its corresponding buffer:

(defun rename-file-and-buffer (new-name)
  "Renames both current buffer and file it's visiting to NEW-NAME."
  (interactive "sNew name: ")
  (let ((name (buffer-name))
 (filename (buffer-file-name)))
    (if (not filename)
 (message "Buffer '%s' is not visiting a file!" name)
      (if (get-buffer new-name)
   (message "A buffer named '%s' already exists!" new-name)
 (progn
   (rename-file name new-name 1)
   (rename-buffer new-name)
   (set-visited-file-name new-name)
   (set-buffer-modified-p nil))))))