vote up 69 vote down star
99

My primary editor is Emacs, but my usage habits and knowledge of features has barely changed over the last few years.

What are the Emacs features that you use on a daily basis? Are there any little-known Emacs features that you find very useful?

Edit: Made this into the recommended poll format...please put one feature per answer from now on.

flag
show 2 more comments

66 Answers

vote up 4 vote down

EmacsWiki

link|flag
vote up 4 vote down

Something that can be very useful at times, especially when renaming a bunch of files: In a Dired buffer, type "e" for wdired-change-to-wdired-mode, which allows you to edit the directory using any of your normal editing commads: regex-replace, rectangle commands, etc on file names!

On a related note, the rectangle commands are also quite useful when you get used to them.

link|flag
show 2 more comments
vote up 4 vote down

For those coding in C in large projects cscope is etags killer. Mapping the shortcut

(define-key global-map "\M-."  'cscope-find-this-symbol)

in dot-emacs will make you forget about tags.

Of course you have to index your project but here is another helper:

(setq  cscope-database-regexps 
   '(
     ("^path_to_your_most/used/project/directory/tree/regexp.*" 
      ( t )
      ("path_to_first_indexed_tree")
      ("path_to_second_indexed_tree")
      ("path_to_third_indexed_tree")
      ("etc")))

Put it in your dot-emacs (there can be several entries for different projects) and (x)emacs will know where to look for symbols for current buffer, so you don't have to index whole project - just the modules you work on.

cscope greatly improves understanding and refactoring of C source in big projects. Every hit of M-. presents you an active list of symbol use with one line context.

link|flag
vote up 4 vote down

Numbering in macros.

In the new(er) Emacsen, 'F3' is bound to start recording a keyboard-macro and 'F4' is bound to end recording a keyboard macro (and to replaying the last recorded keyboard-macro).

Press 'F3' to start recording a macro.

Now: when pressing 'F3' again while recording the macro, a counter is inserted which is incremented each time you play the macro back.

I found this incredibly useful in a surprising number of situations.

Press 'F4' to stop recording the macro, and press 'F4' again as many times as you need to repeat the macro.

link|flag
vote up 3 vote down

hexl-mode is priceless for examining/editing non-text files.

link|flag
vote up 3 vote down

selective-display aka code folding aka code summarizing

Code Summarizing in emacs plain beautiful(not really code folding since you're not closing up just one or two functions). It allows you to display only code that has a certain level of indentation in front of it. So you can hit a button and only classes show up or pass an argument with M- then hit the button and only the classes and the function definitions show up. Makes moving around code just plain easy. This works incredibly well with python's enforcement of indentation.

link|flag
vote up 3 vote down

Have M-x shell open a new shell instead of putting the existing shell buffer in the foreground:

(add-hook
  'shell-mode-hook
  '(lambda (&rest ignore)
    (rename-buffer (generate-new-buffer-name "shell"))))

Turn off scrollbar and other UI stuff:

;; turn off scrollbars
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))

Put Backup files into their own directory:

(setq backup-directory-alist `(("." . "~/.emacsbackups")))

M-x customize-variable. Very useful for customizing emacs, also in combination with writing and customizing your own elisp functions.

Pre-canned color themes: http://www.cs.cmu.edu/~maverick/GNUEmacsColorThemeTest/index-c.html

link|flag
vote up 3 vote down

My vote goes to org mode plus remember templates,

;;Remember
(org-remember-insinuate)
(setq org-directory "~/org/")
(setq org-default-notes-file (concat org-directory "/notes.org"))
(define-key global-map "\C-cr" 'org-remember)

;;Remember templates
(setq org-remember-templates
      '(("Todo" ?t "* TODO %?\n  %i\n  %a" "~/org/todo/TODO.org" "Tasks")
        ("Journal" ?j "* %U %?\n\n  %i\n  %a" "~/org/JOURNAL.org")
        ("Idea" ?i "* %^{Title}\n  %i\n  %a %:date" "~/org/JOURNAL.org" "New Ideas")))
link|flag
vote up 2 vote down

How about Digit-Arguments for the next command. Before, I have always used Universal-Arguments via C-u but you can go much faster since Digit args are bound to both, Control and Meta.

Examples:

  • move point 3 words forward: hold down Meta and type 3f
  • kill those lines below: hold down Control and type 33k
link|flag
vote up 2 vote down

I switched from using nedit and vi to emacs (now Xemacs) for column editing and the AUTOs in verilog-mode. cua-mode enables the familiar key bindings - specifically clipboard (undo-Z, cut-X, copy-C, paste-V) key bindings - it really helps to ease the transition to emacs because you can use the normal emacs key bindings at the same time.

Since then I have found many modes to make (x)emacs like the IDE Eclipse only better because I don't have the performance hit (memory and speed) and I don't have to work inside of an Eclipse project. Check-out CEDET.

link|flag
vote up 2 vote down
C-x C-o runs the command delete-blank-lines

I know it is quite basic, but extremely useful; delete several blank lines at once, or (when cursor on nonblank line) delete any immediately following blank lines.

link|flag
vote up 2 vote down

Many of these have been mentioned already, but here's my list:

auto-indent: I love that when I hit tab it automatically indents "correctly", regardless of the type of the file. Also, the fact that you have many options of indenting style!

elisp: I've written so many stupid little elisp functions... I love that I can just create a function that does exactly what I need... (Favorite: M-x bp-folgers-crystalyze: secretly replaces the meta-syntactic variable "foo" with folgers crystals)

indent-region: auto-indents any region. Tells you where your missing ; is immediately!

C-n C-f C-b C-p: I never use the arrow keys anymore. (To the point where I'm always annoyed that C-b gives "block quote" on SO...)

bookmarks: constantly editing .emacs? no problem.

Multiple frames, keyboard switching between frames and windows: I don't need to use the mouse!

Paren matching

comment-region: Uses mode-dependent comment syntax to comment out every line in a region.

link|flag
show 2 more comments
vote up 2 vote down

Most of us are familiar with M-! for running a quick shell command from inside Emacs. A somewhat lesser known facet of this function involves using a prefix command of 1:

M-1 M-!

This runs the shell command and inserts the output at point in my buffer.

But what good is that? It lets me insert text into buffers, but not interact with it in any significant way. What I really need is a way to get the shell to take input from my buffer. Enter the cousins M-| and M-1 M-|. From the docs:

M-| runs the command shell-command-on-region, which is an interactive compiled Lisp function in `simple.el'

M-1 M-| runs a shell command on the region and replaces the region with the output of the command.

In general, I prefer to use features built into Emacs, but when there's no Elisp equivalent available, I can carry out text transformations I need simply and easily:

M-1 M-| perl -p -e 'y/a-zA-Z/n-za-mN-ZA-M/'

To rot-13 encrypt a region quickly, for instance.

(Incidentally, The keystrokes C-1 through C-0 and M-1 through M-0 are the same (by default) as C-u 1 through C-u 0, which makes it very easy to type in repeat arguments. Just hold down M and type in 1 and |, or hold down C and type in 7 and n.)

link|flag
vote up 2 vote down

I listed some of the packages I rely on most here:

Regularly used Emacs packages

link|flag
show 2 more comments
vote up 1 vote down

@Ray Vega I think it is even better if you use hippie-expand. You can configure which functions, and in which order will be called to complete. Here is my list:

try-complete-file-name-partially, try-complete-file-name, try-expand-all-abbrevs, try-expand-dabbrev, try-expand-dabbrev-all-buffers, try-expand-dabbrev-from-kill

query-replace-regexp. The syntax sucks, but once you get used ...

link|flag
vote up 1 vote down

re-builder

link|flag
show 1 more comment
vote up 1 vote down

Little known but useful:

M-x isearch-forward-regexp

Incremental regex search that you can edit while it runs to get the regex matches correct.

link|flag
show 1 more comment
vote up 1 vote down

Ubiquity. Not exactly a "feature" per se, but important nonetheless. You can log into pretty much any *nix machine in the world, and expect emacs to be there.

link|flag
3  
This is more true for vi/vim than emacs. – docgnome Jun 17 at 23:41
vote up 1 vote down

Not really an editor feature proper, but having a foot pedal to avoid "Emacs pinky" is nice. My pedal has three buttons bound to Control, Meta, and Shift.

link|flag
vote up 1 vote down

Minibuffer completion with Icicles.

link|flag
show 1 more comment
vote up 1 vote down

dired! and in there: dired-mark-files-regexp, dired-do-rename-regexp and dired-do-shell-command

when editing (blog) texts: transpose-chars (CTRL-t). :-) a command i miss in most text editors.

when programming: python-mode, its py-comment-region and py-execute-buffer (with setting py-which-shell as local varuable).

link|flag
vote up 1 vote down

Quiting (it was a while before I learned that), as being unable to quit Emacs kept me from wanting to use it. Was the same with Vim. Why does a simple command like 'exit' need to be so complicated?

CTRL-X-C

link|flag
1  
as opposed to :wq! in vi? Eat Flaming Death! – Brian Postow Aug 4 at 20:54
1  
quitting is, I would say, worst "single most useful feature" of emacs, because you can only use it once per session and, the more you enjoy emacs, the less you should really use it. – Justin Lilly Aug 31 at 5:45
show 2 more comments
vote up 1 vote down

Bongo

Manage playlists and play music from within Emacs. Supports multiple different backends. It even supports streaming from internet radio. I use it to listen to internet radio feeds while working. Especially useful if working in a non-desktop environment.

link|flag
vote up 1 vote down
multi-occur-in-matching-buffers

Allows you to regex search inside of all open buffers that match a regex

link|flag
vote up 1 vote down

M-x toggle-truncate let's me switch of line-wrapping as a quick outline mode. Not so useful when programming, but definitely so when editing docs or html.

link|flag
vote up 0 vote down

A feature that I have found very useful is that whenever you're using Tramp to access a remote server and then into dired mode on a folder on that server, you can upload files from your computer with a simple drag and drop.

link|flag
vote up 0 vote down

One very useful package is the BrowseAproposUrl stuff:

http://www.emacswiki.org/emacs/BrowseAproposURL

I added some functions to translate using google dictionary and google translate a bit easier.

http://www.emacswiki.org/emacs/BrowseAproposURL#toc5

link|flag
vote up 0 vote down

M-i

This insert spaces or tabs to next defined tab-stop column. It alows me to align everything with a few key presses which if very useful when you want a nice code.

Example:


int i = 1;
GtkWidget *window, *label;
double *a, *b;

can become something like this:


int          i = 1;
GtkWidget    *window,  *label;
double       *a,       *b;

Additionaly you can customize places where you want tab stop with:


M-x edit-tab-stops
link|flag
vote up 0 vote down

webjump

Let's you quickly launch webpages with search terms. For example a google, wikipedia or flickr image search can be quickly launched in your favourite browser from emacs.

link|flag
vote up 0 vote down

The grep-find command

M-x grep-find

search a pattern in current directory files and subfolders

My grep-find command is customized like that :

(custom-set-variables

....

'(grep-find-command "find . -type f -not -name \".svn-base\" -and -not -name \"~\" -and \( -name \".html\" -or -name \".php\" -or -name \".py\" -or -name \".sql\" -or -name \".js\" -or -name \".css\" -or -name \".sh\" -or -name \".tex\" -or -name \"Makefile\" \) -print0 | xargs -0 -e grep -n -s -F ")

....

)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.