Accented Letters
Really more of a note to myself. To get an accented letter like é in Emacs, the keybinding is C-x 8 ' e.
Shad Gregory's Blog
Really more of a note to myself. To get an accented letter like é in Emacs, the keybinding is C-x 8 ' e.
M-x set-input-methed RET TeX
One of the many great tips at this article at howardism.org is to remember to use keep-lines/flush-lines instead of grep. One of the great features of eshell is ability to redirect output to a buffer.
ls | sed G > #<mybuffer>
Now you can switch to mybuffer and use M-x keep-lines to find, say, all the text files.
I've gotten a little sick of the "~" files littering my directories. Fortunately, adding the following to your init.el will send the backup files to one place in a single directory:
(setq backup-directory-alist '(("" . "~/.emacs.d/backup")))