up vote 260 down vote favorite
369
share [g+] share [fb]

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.

link|improve this question
21  
C-X C-C is the most useful feature of Emacs I've found. ;) – JUST MY correct OPINION Aug 21 '10 at 13:51
26  
I think what you're looking for is... M-! vim – Thanatos Dec 5 '10 at 7:31
show 2 more comments
feedback

closed as not constructive by casperOne Dec 14 '11 at 17:40

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by Neal Dec 6 '11 at 20:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

95 Answers

Flymake is the tool I cannot live without when programming. Correctly configured with Makefiles (I even use flymake on Windows), you instantly see, on-the-fly, all the errors and warnings that your compiler can find.

And this tool is part of GNU Emacs by default.

link|improve this answer
feedback

deft - inspired by Notational Velocity, it is now my favourite way of keeping notes from within Emacs.

http://jblevins.org/projects/deft/

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Some of these are really basic commands, but they do help me out a lot:

  • when hacking my .emacs config or other eLisp modding I place the cursor at the end of a line and press C-x C-e to evaluate the expression. This is a true friend for emacs tweakers.
  • C-l and C-u 0 C-l to jump cursor position to middle and top of screen. This is great for reading those long lonely log files. I also have key-binding for the latter since I use it so much.
  • C-x b and C-x C-b to navigate those buffers real fast. Combine this with window splitting ( C-x 2 and C-x 3 ) and you will do magic when showing off your log analysis to colleagues and managers... :)
  • The almighty incremental search: C-s and try pressing C-w a few times after. This is also one of the most productive, commonly used features of emacs. I myself was struggling with copy-pasting to the search field before I found this cool feature. C-g shall return to the point where you started out from so no worries about that either.
  • Try key-binding window movement it is a blast in productivity:
    • (global-set-key [S-left] 'windmove-left)
    • (global-set-key [S-right] 'windmove-right)
    • (global-set-key [S-up] 'windmove-up)
    • (global-set-key [S-down] 'windmove-down)
  • Last, but not least is the almighty UNDO feature C-/ which is my personal favorite in emacs, since it reflects how easy it is to use in emacs and how we do not need a separate command for REDO, since it actually is the undo of the undo.

These might sound too simple, but are really powerful features in everyday use.

link|improve this answer
2  
To add to the almighty undo comment, being able to select a region and undo only in that region is a pretty awesome feature for me. – Adam Benzan Dec 6 '11 at 20:08
1  
You can also hit C-l repeatedly to cycle the current line between the center, top and bottom of the window. – akaihola Dec 8 '11 at 8:57
show 1 more comment
feedback

org-mode - Org-mode is for keeping notes, maintaining ToDo lists, doing project planning, and authoring with a fast and effective plain-text system. You can use it as a GTD (Getting Things Done, note taker and web/PDF authoring. http://orgmode.org/

link|improve this answer
show 1 more comment
feedback
M-x replace-string

This command unconditionally replaces all instances of the old string in the document starting at the current cursor position. lifesaver =)

syntax: M-x replace-string {old string} [return] {new string} [return]

link|improve this answer
1  
Or short: M-% – Patrick Mar 5 '11 at 15:00
show 1 more comment
feedback

finder-list-keywords

This function shows all the keywords used in the packages within emacs. In other words you can find a lot of stuff in emacs that you never knew was there.

abbrev        abbreviation handling, typing shortcuts, macros
bib           code related to the `bib' bibliography processor
c             support for the C language and related languages
calendar      calendar and time management support
comm          communications, networking, remote access to files
convenience   convenience features for faster editing
data          support for editing files of data
docs          support for Emacs documentation
emulations    emulations of other editors
extensions    Emacs Lisp language extensions
faces         support for multiple fonts
files         support for editing and manipulating files
frames        support for Emacs frames and window systems
games         games, jokes and amusements
hardware      support for interfacing with exotic hardware
help          support for on-line help systems
hypermedia    support for links between text or other media types
i18n          internationalization and alternate character-set support
internal      code for Emacs internals, build process, defaults
languages     specialized modes for editing programming languages
lisp          Lisp support, including Emacs Lisp
local         code local to your site
maint         maintenance aids for the Emacs development group
mail          modes for electronic-mail handling
matching      various sorts of searching and matching
mouse         mouse support
multimedia    images and sound support
news          support for netnews reading and posting
oop           support for object-oriented programming
outlines      support for hierarchical outlining
processes     process, subshell, compilation, and job control support
terminals     support for terminal types
tex           supporting code for the TeX formatter
tools         programming tools
unix          front-ends/assistants for, or emulators of, UNIX-like features
wp            word processing
link|improve this answer
feedback

multi-web-mode - When you are editing mixed content (say a php file which might have a mix of html, php, css and javascript), it will enforce the correct mode relevant to the block of code that you are editing. e.g. if you are inside <script type="text/javascript">...</script> block, it'll automatically switch to javascript-mode

https://github.com/fgallina/multi-web-mode

link|improve this answer
show 2 more comments
feedback

@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|improve this answer
feedback

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|improve this answer
2  
C-u C-s does the same thing with fewer keystrokes. – hillu Apr 7 '09 at 9:06
feedback

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|improve this answer
12  
This is more true for vi/vim than emacs. – docgnome Jun 17 '09 at 23:41
show 1 more comment
feedback

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|improve this answer
feedback

Minibuffer completion with Icicles.

link|improve this answer
show 1 more comment
feedback

The fastest way to checkin/out: M-x svn-status

link|improve this answer
feedback

Check out company-mode.

Excellent completion interface.

be sure to try C-s and the C-o to filter the completion candidates.

My completion set up is here:

http://richardriley.net/projects/emacs/dotprogramming

link|improve this answer
feedback

Ctags support:

If you have a Ctags file, it will take you to the definition of the variable, very useful when working in a big project. (Certainly, Vim has similar functionality)

link|improve this answer
feedback

AUCTeX, for editing (La)TeX documents. Emacs+AUCTeX is the most powerful (La)TeX editing environment I've found.

link|improve this answer
feedback

zen-coding mode - expand CSS like selectors to generate html. e.g. expand:

div#page>div.logo+ul#navigation>li*5>a

to

<div id="page">
        <div class="logo"></div>
        <ul id="navigation">
                <li><a href=""></a></li>
                <li><a href=""></a></li>
                <li><a href=""></a></li>
                <li><a href=""></a></li>
                <li><a href=""></a></li>
        </ul>
</div>

http://code.google.com/p/zen-coding/

link|improve this answer
feedback

It's amazing, that no one suggested this: kill-ring/undo-ring will transform your editing forever.

link|improve this answer
1  
feedback

Some of my favorites:

  • split-window-horizontally (C-x 3) - this lets you see two buffers side by side.
  • speedbar - want a tree view of the directory you're working in? This gives you that in a new frame (must be running GUI version of emacs).
  • longlines-mode - If you need to edit a text file with long lines, this mode gives you word wrap.
link|improve this answer
show 4 more comments
feedback

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|improve this answer
feedback

M-x is the most useful feature

link|improve this answer
feedback

Regular expression search backwards, just because it has a funny keystroke:

ctrl+alt+shift+5

link|improve this answer
feedback

TFS + emacs is one of the less well-known that I've been finding to be very useful. I can checkin/checkout files from codeplex, add or delete files, diff, rename, undo, etc.

Maybe not the single most useful feature, but very useful.

link|improve this answer
feedback

lock-mode! I very recently found this, and in combination with auto-revert-tail-mode emacs can easily replace most cusom tail-applications if youre in windows.

link|improve this answer
feedback

For me, the single most useful feature is my .emacs file - there is a lot of power to be had in a scripted config.

link|improve this answer
feedback

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