The single most useful Emacs feature - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T22:45:48Z http://stackoverflow.com/feeds/question/60367 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature 69 The single most useful Emacs feature Readonly 2008-09-13T06:41:09Z 2009-11-14T01:51:46Z <p>My primary editor is Emacs, but my usage habits and knowledge of features has barely changed over the last few years. </p> <p>What are the Emacs features that you use on a daily basis? Are there any little-known Emacs features that you find very useful?</p> <p>Edit: Made this into the recommended poll format...please put one feature per answer from now on.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60371#60371 14 Answer by Dave Webb for The single most useful Emacs feature Dave Webb 2008-09-13T06:52:20Z 2008-10-06T04:24:26Z <p>I'm not sure if <a href="http://www.gnu.org/software/emacs/manual/html_node/emacs/Iswitchb.html" rel="nofollow"><code>iswitchb</code></a> is little known but it's something I use countless times everyday. It makes switching buffer that little bit easier. When you enter <code>C-x b</code> to switch buffers <code>iswitchb</code> allows you just to enter a unique substring of the buffer name to select it which can often just be a single character. It's hard to explain but easy to try and once you've tried it you'll never switch it off.</p> <p><a href="http://www.gnu.org/software/emacs/manual/html_node/emacs/Completion-Options.html#Completion-Options" rel="nofollow"><code>partial-completion-mode</code></a> does something similar in that it can autocomplete any minibuffer commands. It works best if it give it a hint by typing any dashes in the commands. For example, for <code>M-x yank-rectangle</code> I can use <code>M-x y-r [tab]</code> and have it autocomplete.</p> <p>And there's <a href="http://www.gnu.org/software/tramp/" rel="nofollow">TRAMP</a> for opening files on remote machines, usually via SSH. It works a treat on Windows using <code>plink.exe</code> from the <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow">Putty</a> package.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60390#60390 14 Answer by John for The single most useful Emacs feature John 2008-09-13T07:42:39Z 2008-09-13T07:42:39Z <p>self-insert, by far, imo.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60413#60413 52 Answer by Ray Vega for The single most useful Emacs feature Ray Vega 2008-09-13T08:31:32Z 2008-09-13T08:31:32Z <p>Auto-complete words in your code based on what already exists in the buffers:</p> <pre><code>M-/ </code></pre> <p>Keep hitting M-/ until you find the word you are looking for.</p> <p>Cuts down tremendously on how much you type.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60414#60414 31 Answer by Sébastien RoccaSerra for The single most useful Emacs feature Sébastien RoccaSerra 2008-09-13T08:32:54Z 2008-09-13T11:38:53Z <h3>Anything</h3> <p><a href="http://www.emacswiki.org/cgi-bin/wiki/Anything" rel="nofollow">Anything</a>! It's a kind of Quicksilver / Launchy / slickedit / Ubiquity tool inside Emacs.</p> <p>Out of the box it allows you to type a word or regex and presents you lists of matching:</p> <ul> <li>buffers (defaulting to the previous buffer, allowing you to switch back &amp; forth between two buffers)</li> <li>files from the current directory</li> <li>recent files</li> <li>emacs functions / commands</li> <li>info pages</li> <li>man pages</li> </ul> <p>And it's easily extensible, you can easily add Google suggestions, or grep / find / <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/mdfind.1.html" rel="nofollow">mdfind</a> tools (most of them being allready there).</p> <p>With Anything, I don't need <code>iswitchb</code> anymore, and I rarely use <code>(ido-)find-file</code>, since most of the time the files I want to open are already in the recent files list or the current directory list. </p> <p>It changed the way I use Emacs!</p> <h3>Org Mode</h3> <p><a href="http://www.emacswiki.org/cgi-bin/wiki/OrgMode" rel="nofollow">Org Mode</a> for project planning. From the home page:</p> <blockquote> <p>Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing project planning with a fast and effective plain-text system.</p> </blockquote> <p>It comes with Emacs, and it has a great integrated, plain text, programmer friendly, builtin <a href="http://orgmode.org/manual/Tables.html#Tables" rel="nofollow">table &amp; spreadsheet</a> engine! (Includig auto re-aligning and formulas.)</p> <h3>Smart Tab</h3> <p><a href="http://www.emacswiki.org/cgi-bin/wiki/TabCompletion#toc2" rel="nofollow">Smart Tab</a> makes your tab key smart. If you're at the end of a symbol it tries to complete it, otherwise it indents the current line / region.</p> <p>It works great for me: it makes line indenting, region indenting and completion available near the home line.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60416#60416 23 Answer by epatel for The single most useful Emacs feature epatel 2008-09-13T08:37:57Z 2008-09-13T08:37:57Z <p><a href="http://jamesthornton.com/emacs/node/emacs_487.html" rel="nofollow">Keyboard macros</a> are very powerful when dealing with list of stuff...I use them as often as possible.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60452#60452 7 Answer by cic for The single most useful Emacs feature cic 2008-09-13T10:11:46Z 2008-09-13T10:11:46Z <p>Flyspell-mode! "Flyspell enables on-the-fly spell checking in Emacs by the means of a minor mode."</p> <p>Can be configured to check LaTeX documents and comments in some other languages (flyspell-prog-mode).</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60493#60493 1 Answer by Mario for The single most useful Emacs feature Mario 2008-09-13T12:24:16Z 2008-09-13T12:24:16Z <p>@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:</p> <p>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</p> <p>query-replace-regexp. The syntax sucks, but once you get used ...</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60536#60536 7 Answer by J.F. Sebastian for The single most useful Emacs feature J.F. Sebastian 2008-09-13T13:32:15Z 2008-09-16T02:10:27Z <p>Most-used and most-useful features (for me): </p> <ul> <li><p>navigational keyboard bindings (M-b, M-f, C-a, C-e, etc) work well for fancy keyboard layouts. You do not use <code>Home</code>, <code>End</code>, <code>PgUp</code>, <code>PgDn</code>, arrows, therefore there is no need to relearn touch-typing when, for example, on notebook these keys are placed in unusual places.</p></li> <li><p>It works in console (<code>emacs -nw</code>) as well as with GUI. And it works under Windows, Linux, Mac. You can use the same editor both in command-line and GUI environment on any OS.</p></li> <li><p>It has <code>server-mode</code> which allows an instant opening of new documents in the same editor environment.</p></li> <li><p>It allows to view several documents (and/or different parts of the same document) simultaneously. It is especially useful for wide-screen monitors.</p></li> <li><p>Embedded command-line (M-!).</p></li> <li><p>version-control (<code>C-x v v</code> - do the next logical version control operation on the current file.) </p></li> <li><p>find, open, switch, create file, buffer (<code>C-x C-f</code>, <code>C-x b</code>) via <a href="http://www.emacswiki.org/cgi-bin/wiki/InteractivelyDoThings" rel="nofollow">ido.el</a></p></li> </ul> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60537#60537 47 Answer by ehdr for The single most useful Emacs feature ehdr 2008-09-13T13:33:23Z 2008-09-16T16:56:52Z <p>A not so well known feature that I find very useful is <code>M-x align-regexp</code>. If you mark a region and execute it, you will be asked for a regular expression, and emacs will then line up the first match of that expression on every line, by padding with spaces (or tabs, if you like). For example, say that you have a list of variables in your code:</p> <pre><code>int a = 2; int a_longer_variable_name = 73; int i = 0; </code></pre> <p>Then you can mark those lines and to <code>M-x align-regexp</code> and specify <code>=</code> as the expression, and it will align it like:</p> <pre><code>int a = 2; int a_longer_variable_name = 73; int i = 0; </code></pre> <p>Maybe not the most important feature in the world, but I use it regularly, and it sometimes impresses non-emacs people. :)</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60540#60540 6 Answer by Bart for The single most useful Emacs feature Bart 2008-09-13T13:36:25Z 2008-09-13T13:36:25Z <p><strong>dired</strong> (M-x dired) lets me navigate folders by touch-typing, much faster than browsing in a gui.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60576#60576 8 Answer by Devrin for The single most useful Emacs feature Devrin 2008-09-13T14:46:43Z 2008-09-13T15:00:00Z <p>Though it's not an emacs <em>feature</em>, it's always worthwhile to point out to any newbies to remap their caps lock keys to control. Save those pinkies!</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60625#60625 1 Answer by ibz for The single most useful Emacs feature ibz 2008-09-13T15:43:25Z 2008-09-13T15:43:25Z <p>re-builder</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60795#60795 7 Answer by Graeme Perrow for The single most useful Emacs feature Graeme Perrow 2008-09-13T19:44:52Z 2008-09-13T19:44:52Z <p>Compiling from within emacs, and then for each error, being able to visit the line of code causing the error with a keystroke.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/61474#61474 19 Answer by J.F. Sebastian for The single most useful Emacs feature J.F. Sebastian 2008-09-14T17:13:01Z 2008-09-22T16:04:40Z <p>Don't forget about a little known command <a href="http://xkcd.com/378/" rel="nofollow"><code>C-x M-c M-butterfly</code></a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/61483#61483 8 Answer by Łukasz for The single most useful Emacs feature Łukasz 2008-09-14T17:22:11Z 2008-09-14T17:22:11Z <p><a href="http://www.emacswiki.org/cgi-bin/wiki/HippieExpand" rel="nofollow">hippie-expand</a>, best text expansion in emacs, binding it to TAB and it will always do the right thing (and also very customizable).</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/64076#64076 12 Answer by Alex B for The single most useful Emacs feature Alex B 2008-09-15T15:43:41Z 2008-09-15T15:43:41Z <p>I like interactive SQL mode to give me command line editing and history while using sqlplus.</p> <pre><code>M-x sql-oracle </code></pre> <p>And I add the following to my .emacs file:</p> <pre><code>(defun my-sql-interactive-mode-hook () (setq tab-width 8)) (add-hook 'sql-interactive-mode-hook 'my-sql-interactive-mode-hook) (require 'sql) </code></pre> <p>Now I can start a sqlplus session and I get C-up and C-down to navigate through prior sql commands (similar to shell mode). This requires sqlplus to be available.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/68815#68815 5 Answer by docgnome for The single most useful Emacs feature docgnome 2008-09-16T02:13:09Z 2008-09-16T02:13:09Z <p>I find the <a href="http://ecb.sourceforge.net/" rel="nofollow" title="Emacs Code Browser Homepage">Emacs Code Browser</a> to be very useful for browsing the large code base we have at work. I also Have to say the most useful feature is really elisp itself. While I think it sucks, it only sucks compared to scheme or another lisp variant. It is by far the most powerful, imho, scripting language built into any editor.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/68863#68863 4 Answer by sammyo for The single most useful Emacs feature sammyo 2008-09-16T02:22:21Z 2008-09-16T02:22:21Z <p>The ediff- commands, there's a bunch of variations, up to and beyond merging a full directory tree. </p> <p>M-x ediff [then tab to the variant you need.] While editing I use ediff-buffers frequently.</p> <p>The | switches between vertical and horizontal layout, it's color coded to help see just which word/letter changed. </p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/69728#69728 18 Answer by jfm3 for The single most useful Emacs feature jfm3 2008-09-16T06:11:13Z 2008-09-16T18:38:13Z <p>Here's the rundown of my F-keys:</p> <p>F1: Gnus. Takes some learning, but cut my daily email time down to 20 minutes.</p> <p>F2: ansi-term. Fairly full featured terminal emulator with a mode where you can switch back into behaving like an emacs buffer for kill/yank/macro goodness.</p> <p>F3: slime. Crazy good tool for hacking the good hack with Common Lisp.</p> <p>F4: switch-to-buffer "<em>scratch</em>". The scratch buffer is a good place to do fancy Emacs stuff when you don't want to type in the mini-buffer (try C-j).</p> <p>F5: compile. You don't realize how great this is until you also grok next-error and previous-error.</p> <p>F6: visits the buffer I have usually associated with an SQL session, either in an <em>ansi-term</em> or using psql.</p> <p>F7: w3m. Very slick, fast web browser. Perfect for searching documentation.</p> <p>F9: Visit my todo file in org-mode. org-mode, like gnus, takes a while to learn, but you can go so damn fast with it, it's worth it.</p> <p>F10: calendar. Not as nice as org-mode but I haven't switched over all the way yet.</p> <p>F11: open the EMMS playlist. EMMS doesn't come with the usual upstream Emacs distribution, but it's a pretty reasonable OGG/MP3/etc player.</p> <p>F12: I run ERC and bitlbee. F12 brings me to the chat buffer with all my contacts from Google Talk and AIM in it.</p> <p>Insanely cool thing not on one of my F-keys: TRAMP. TRAMP integrates into the way emacs finds, reads, and writes files. You can use file names like /sudo::/etc/passwd to edit things as root without starting another emacs, or /ssh:jfm3@jfm3.org:foo/bar.html to edit files remotely without staring a remote emacs.</p> <p>Generalized ompletion modes and facilities are useful too. I like completion.el, but there are several to choose from.</p> <p>Definitely check out www.emacswiki.org. Tons of good ideas there. Good luck!</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/69749#69749 1 Answer by dajobe for The single most useful Emacs feature dajobe 2008-09-16T06:16:01Z 2008-09-16T06:16:01Z <p>Little known but useful:</p> <pre><code>M-x isearch-forward-regexp </code></pre> <p>Incremental regex search that you can edit while it runs to get the regex matches correct.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/70137#70137 8 Answer by Kendall Helmstetter Gelner for The single most useful Emacs feature Kendall Helmstetter Gelner 2008-09-16T07:42:27Z 2009-03-02T02:07:36Z <p>Someone else mentioned keyboard macros, but provided a broken link.</p> <p>That feature may seem inane if you've used it with other platforms. But keyboard macros in Emacs are far more powerful, or at least easy to access the power of, than any other system I have used.</p> <p>You can start simply by typing "C-x (", then anything you do is recorded to be played back... which means searches, replacement, opening new files, and so on. Then when you are done you can type "C-x )" to end the macro, and C-x e to replay the last keyboard macro. You can also run name-last-kbd-macro to name it, then use insert-kbd-macro to save off the macro you just defined somewhere (like .emacs).</p> <p>The real power of macros comes into play when you use multiple cut buffers (registers), to save away various fragments of text in the middle of a macro and re-use the parts elsewhere. You can for example have a macro that expects some key text to be in register A for insertion, perhaps a search term in register B, and some other text to append elsewhere in register C grabbed on the fly within the macro. Or of course use multiple registers like multiple clipboards, all within emacs - the key bindings are different than they once were, but the commands you want are copy-to-register and insert-register.</p> <p>All that, and it's basically as simple as typing something once (carefully) and then having Emacs repeat what you were doing with very complex changes possible.</p> <p>I have used the combination of keyboard macros and registers to do things as diverse as turn lines of words into multiple lines of code appropriate for the word on the line, repair damaged LDIF files from an LDAP system, or do various refactoring tasks.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/74602#74602 5 Answer by ehdr for The single most useful Emacs feature ehdr 2008-09-16T17:06:29Z 2008-09-16T17:06:29Z <p>Another one of my favorites is the transpose-* family of functions. They allow you to instantly switch two units of text around the current position of the cursor. For example, <code>tranpose-words</code> on key <code>M-t</code> switches the word in front of your cursor with the one behind it, <code>tranpose-chars</code> on <code>C-t</code> does the same with characters.</p> <p>Perhaps the most useful variants are <code>tranpose-lines</code> (and especially the <code>tranpose-line-up</code> and <code>-down</code> variants of XEmacs) for moving lines around, and <code>transpose-paragraph</code> which switches entire blocks of code instantly.</p> <p>If you really master these commands and make them part of the "active set" of emacs features that you actually use all the time, you will find that they add a whole new flow to editing code.</p> <p>And, important as always, it sure does impress people who don't (yet) know the power of emacs. :)</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/74767#74767 6 Answer by CJP for The single most useful Emacs feature CJP 2008-09-16T17:23:09Z 2008-09-16T17:23:09Z <p>M-x gdb to test in the debugger while automatically moving through the source tree in other windows. Set break points by opening the source file and doing C-x on the appropriate source lines. </p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/76011#76011 8 Answer by Jonathan Arkell for The single most useful Emacs feature Jonathan Arkell 2008-09-16T19:28:17Z 2008-09-16T19:28:17Z <p>Elisp. While the language itself can be a little bit clunky (for a lisp) it is so nice to be able to extend or fix your editor on the fly when you need to do so. </p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/77961#77961 5 Answer by Chopmo for The single most useful Emacs feature Chopmo 2008-09-16T22:30:50Z 2008-09-16T22:30:50Z <p><strong>Using ido</strong> for finding symbols in the current buffer: <a href="http://www.emacswiki.org/cgi-bin/wiki/ImenuMode" rel="nofollow">http://www.emacswiki.org/cgi-bin/wiki/ImenuMode</a></p> <p><strong>Speeding up navigatio</strong>n by adding shortcuts to jump 5 lines per keystroke: </p> <pre><code>;; Faster point movement (global-set-key "\M-\C-p" '(lambda () (interactive) (previous-line 5))) (global-set-key "\M-\C-n" '(lambda () (interactive) (next-line 5))) </code></pre> <p>But the single biggest productivity booster for me has been <strong>swapping numbers and punctuation</strong> when programming in C++: <a href="http://infolab.stanford.edu/~manku/dotemacs.html" rel="nofollow">http://infolab.stanford.edu/~manku/dotemacs.html</a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/83630#83630 29 Answer by TMealy for The single most useful Emacs feature TMealy 2008-09-17T14:07:53Z 2008-09-17T14:07:53Z <p><strong>M-x occur</strong></p> <p>This feature is very useful when re-factoring/analyzing code. It's one of the things that keeps me from becoming a vim user.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/126408#126408 4 Answer by zms for The single most useful Emacs feature zms 2008-09-24T10:33:24Z 2008-09-24T10:33:24Z <p><a href="http://www.emacswiki.org/cgi-bin/wiki" rel="nofollow">EmacsWiki</a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/172733#172733 4 Answer by jamesnvc for The single most useful Emacs feature jamesnvc 2008-10-05T21:57:59Z 2008-10-05T21:57:59Z <p>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!</p> <p>On a related note, the rectangle commands are also quite useful when you get used to them.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/203087#203087 1 Answer by Sherm Pendley for The single most useful Emacs feature Sherm Pendley 2008-10-14T22:24:37Z 2008-10-14T22:24:37Z <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/218611#218611 4 Answer by Rajish for The single most useful Emacs feature Rajish 2008-10-20T14:21:00Z 2008-10-20T14:21:00Z <p>For those coding in C in large projects <a href="http://cscope.sourceforge.net/" rel="nofollow">cscope</a> is etags killer. Mapping the shortcut</p> <pre><code>(define-key global-map "\M-." 'cscope-find-this-symbol) </code></pre> <p>in dot-emacs will make you forget about tags. </p> <p>Of course you have to index your project but here is another helper:</p> <pre><code>(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"))) </code></pre> <p>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.</p> <p>cscope greatly improves understanding and refactoring of C source in big projects. <strong>Every hit of M-. presents you an active list of symbol use with one line context.</strong></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/218631#218631 3 Answer by Ferruccio for The single most useful Emacs feature Ferruccio 2008-10-20T14:26:09Z 2008-10-20T14:26:09Z <p>hexl-mode is priceless for examining/editing non-text files.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/236645#236645 11 Answer by mamama for The single most useful Emacs feature mamama 2008-10-25T16:24:34Z 2008-10-25T16:24:34Z <p><a href="http://in.youtube.com/watch?v=18xYbPCJOho" rel="nofollow">yasnippets</a></p> <p>Textmate-like refactoring functionality for Emacs.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/236723#236723 1 Answer by Greg Mattes for The single most useful Emacs feature Greg Mattes 2008-10-25T17:26:59Z 2008-10-25T17:26:59Z <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/243453#243453 4 Answer by Tim van der Leeuw for The single most useful Emacs feature Tim van der Leeuw 2008-10-28T14:04:20Z 2008-10-28T14:04:20Z <p>Numbering in macros.</p> <p>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).</p> <p>Press 'F3' to start recording a macro.</p> <p>Now: when pressing 'F3' again while recording the macro, a counter is inserted which is incremented each time you play the macro back.</p> <p>I found this incredibly useful in a surprising number of situations.</p> <p>Press 'F4' to stop recording the macro, and press 'F4' again as many times as you need to repeat the macro.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/255320#255320 2 Answer by binOr for The single most useful Emacs feature binOr 2008-11-01T00:33:52Z 2008-11-01T00:33:52Z <p>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.</p> <p>Examples: </p> <ul> <li>move point 3 words forward: hold down Meta and type 3f</li> <li>kill those lines below: hold down Control and type 33k</li> </ul> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/275681#275681 0 Answer by wallyqs for The single most useful Emacs feature wallyqs 2008-11-09T06:33:26Z 2008-11-09T06:33:26Z <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/312748#312748 2 Answer by Richard Riley for The single most useful Emacs feature Richard Riley 2008-11-23T17:34:59Z 2009-10-19T19:21:26Z <p>I listed some of the packages I rely on most here:</p> <p><a href="http://richardriley.net/projects/emacs/dotemacs" rel="nofollow">Regularly used Emacs packages</a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/320970#320970 10 Answer by Johan Dahlin for The single most useful Emacs feature Johan Dahlin 2008-11-26T14:56:20Z 2008-11-26T14:56:20Z <p>M-x rgrep</p> <p>I've bound it to F4, I'm using it all the time to interactively greping for file in a recursive manner. Combine that with easy bindings for next-error (F9), previous-error (shift-F9) and you have struck gold!</p> <p>It always makes my co-workers impressed how quickly I can find things. No tags needed and it's /very/ fast.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/327524#327524 1 Answer by Alexey Romanov for The single most useful Emacs feature Alexey Romanov 2008-11-29T13:31:16Z 2008-11-29T13:31:16Z <p>Minibuffer completion with <a href="http://www.emacswiki.org/cgi-bin/wiki/Icicles" rel="nofollow">Icicles</a>.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/337832#337832 5 Answer by robcast for The single most useful Emacs feature robcast 2008-12-03T16:45:23Z 2008-12-03T16:45:23Z <p>tramp-mode (and/or Ange-FTP): it lets you view and edit files over SSH, FTP and other protocols as if they were local.</p> <p>You may want to know that you can specify the port for FTP with "#" after the host name. At least it took me a while to find out...</p> <p>(Especially useful with Zope, when you can remotely edit objects in the running instance over FTP and in the products over SSH)</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/337935#337935 2 Answer by Nathan for The single most useful Emacs feature Nathan 2008-12-03T17:12:47Z 2008-12-03T17:12:47Z <p>I switched from using nedit and vi to emacs (now Xemacs) for column editing and the AUTOs in <a href="http://www.verilog.com/verilog-mode.html" rel="nofollow">verilog-mode</a>. 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.</p> <p>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 <a href="http://cedet.sourceforge.net/" rel="nofollow">CEDET</a>.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/383531#383531 3 Answer by Silfheed for The single most useful Emacs feature Silfheed 2008-12-20T17:49:36Z 2008-12-20T17:49:36Z <p><a href="http://emacs.wordpress.com/2007/01/16/quick-and-dirty-code-folding/" rel="nofollow">selective-display aka code folding aka code summarizing</a></p> <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/424266#424266 0 Answer by Richard Riley for The single most useful Emacs feature Richard Riley 2009-01-08T13:44:08Z 2009-01-08T13:44:08Z <p>One very useful package is the BrowseAproposUrl stuff:</p> <p><a href="http://www.emacswiki.org/emacs/BrowseAproposURL" rel="nofollow">http://www.emacswiki.org/emacs/BrowseAproposURL</a></p> <p>I added some functions to translate using google dictionary and google translate a bit easier.</p> <p><a href="http://www.emacswiki.org/emacs/BrowseAproposURL#toc5" rel="nofollow">http://www.emacswiki.org/emacs/BrowseAproposURL#toc5</a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/487654#487654 0 Answer by kliketa for The single most useful Emacs feature kliketa 2009-01-28T13:44:10Z 2009-01-28T13:44:10Z <p><strong><pre><code>M-i</code></pre></strong></p> <p>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.</p> <p><strong>Example</strong>:</p> <pre><code> int i = 1; GtkWidget *window, *label; double *a, *b; </code></pre> <p>can become something like this:</p> <pre><code> int i = 1; GtkWidget *window, *label; double *a, *b; </code></pre> <p>Additionaly you can customize places where you want tab stop with:</p> <pre><code> M-x edit-tab-stops </code></pre> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/551903#551903 1 Answer by halloleo for The single most useful Emacs feature halloleo 2009-02-16T00:18:42Z 2009-02-16T00:25:50Z <p>dired! and in there: <code>dired-mark-files-regexp</code>, <code>dired-do-rename-regexp</code> and <code>dired-do-shell-command</code></p> <p>when editing (blog) texts: <code>transpose-chars</code> (<code>CTRL-t</code>). :-) a command i miss in most text editors. </p> <p>when programming: <code>python-mode</code>, its <code>py-comment-region</code> and <code>py-execute-buffer</code> (with setting <code>py-which-shell</code> as local varuable).</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/600685#600685 2 Answer by libjack for The single most useful Emacs feature libjack 2009-03-01T22:38:24Z 2009-03-01T22:38:24Z <pre><code>C-x C-o runs the command delete-blank-lines </code></pre> <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/713695#713695 5 Answer by Dave Jennings for The single most useful Emacs feature Dave Jennings 2009-04-03T12:22:41Z 2009-04-03T12:22:41Z <p>M-x re-builder</p> <p>Interactive regular expression builder that shows you live in the current buffer just what the regular expression is matching. Great for working out what things might need to be escaped (e.g. () pairs) and whether there's hidden tabs in the whitespace.</p> <p>When you're done you just cut-n-paste into M-x query-replace-regexp or similar.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/724524#724524 6 Answer by Nikwin for The single most useful Emacs feature Nikwin 2009-04-07T07:46:17Z 2009-04-07T07:46:17Z <p>M-x shell to directly access the shell from emacs. When used with a split screen (C-x 3), it becomes very quick and easy to do things. No need to continually switch between programs.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/724540#724540 13 Answer by Heinzi for The single most useful Emacs feature Heinzi 2009-04-07T07:53:09Z 2009-04-07T07:53:09Z <p>string-rectangle (C-x r t) and kill-rectangle (C-x r k). They allow to add stuff in front of every line in a block of text or---vice-versa---remove such stuff.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/825111#825111 2 Answer by Brian Postow for The single most useful Emacs feature Brian Postow 2009-05-05T14:26:29Z 2009-05-05T14:26:29Z <p>Many of these have been mentioned already, but here's my list:</p> <p>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!</p> <p>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)</p> <p>indent-region: auto-indents any region. Tells you where your missing ; is immediately!</p> <p>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...)</p> <p>bookmarks: constantly editing .emacs? no problem.</p> <p>Multiple frames, keyboard switching between frames and windows: I don't need to use the mouse!</p> <p>Paren matching</p> <p>comment-region: Uses mode-dependent comment syntax to comment out every line in a region.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/855232#855232 3 Answer by killdash10 for The single most useful Emacs feature killdash10 2009-05-12T22:41:18Z 2009-05-12T22:41:18Z <p>Have M-x shell open a new shell instead of putting the existing shell buffer in the foreground:</p> <pre> (add-hook 'shell-mode-hook '(lambda (&rest ignore) (rename-buffer (generate-new-buffer-name "shell")))) </pre> <p>Turn off scrollbar and other UI stuff:</p> <pre> ;; 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)) </pre> <p>Put Backup files into their own directory:</p> <pre> (setq backup-directory-alist `(("." . "~/.emacsbackups"))) </pre> <p>M-x customize-variable. Very useful for customizing emacs, also in combination with writing and customizing your own elisp functions.</p> <p>Pre-canned color themes: <a href="http://www.cs.cmu.edu/~maverick/GNUEmacsColorThemeTest/index-c.html" rel="nofollow">http://www.cs.cmu.edu/~maverick/GNUEmacsColorThemeTest/index-c.html</a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/864517#864517 3 Answer by for The single most useful Emacs feature 2009-05-14T16:58:44Z 2009-05-14T16:58:44Z <p>My vote goes to org mode plus remember templates,</p> <pre><code>;;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"))) </code></pre> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/864522#864522 -7 Answer by ryansstack for The single most useful Emacs feature ryansstack 2009-05-14T17:00:05Z 2009-05-14T17:00:05Z <p>The uninstall feature.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/871202#871202 0 Answer by justinhj for The single most useful Emacs feature justinhj 2009-05-15T22:58:48Z 2009-05-15T22:58:48Z <p><a href="http://justinsboringpage.blogspot.com/2009/02/search-reddit-flickr-and-google-from.html" rel="nofollow">webjump</a></p> <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/881671#881671 0 Answer by fredz for The single most useful Emacs feature fredz 2009-05-19T08:59:52Z 2009-05-19T08:59:52Z <p>The grep-find command</p> <p>M-x grep-find</p> <p>search a pattern in current directory files and subfolders</p> <p>My grep-find command is customized like that :</p> <p>(custom-set-variables</p> <p>....</p> <p>'(grep-find-command "find . -type f -not -name \"<em>.svn-base\" -and -not -name \"</em>~\" -and \( -name \"<em>.html</em>\" -or -name \"<em>.php</em>\" -or -name \"<em>.py\" -or -name \"</em>.sql\" -or -name \"<em>.js\" -or -name \"</em>.css\" -or -name \"<em>.sh\" -or -name \"</em>.tex\" -or -name \"Makefile\" \) -print0 | xargs -0 -e grep -n -s -F ")</p> <p>....</p> <p>)</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/881697#881697 1 Answer by Andrioid for The single most useful Emacs feature Andrioid 2009-05-19T09:05:21Z 2009-05-19T09:05:21Z <p>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?</p> <p><strong>CTRL-X-C</strong></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1006121#1006121 0 Answer by lisp-univ-etc for The single most useful Emacs feature lisp-univ-etc 2009-06-17T10:03:39Z 2009-06-17T10:03:39Z <p>M-x is the most useful feature</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1045620#1045620 2 Answer by Karthik for The single most useful Emacs feature Karthik 2009-06-25T18:57:51Z 2009-06-25T18:57:51Z <p>Most of us are familiar with <code>M-!</code> for running a quick shell command from inside Emacs. A somewhat lesser known facet of this function involves using a prefix command of 1:</p> <blockquote> <p><code>M-1 M-!</code></p> </blockquote> <p>This runs the shell command and inserts the output at point in my buffer.</p> <p>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 <code>M-|</code> and <code>M-1 M-|</code>. From the docs:</p> <blockquote> <p><code>M-|</code> runs the command shell-command-on-region, which is an interactive compiled Lisp function in `simple.el' </p> </blockquote> <p><code>M-1 M-|</code> runs a shell command on the region and replaces the region with the output of the command.</p> <p>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:</p> <blockquote> <p><code>M-1 M-| perl -p -e 'y/a-zA-Z/n-za-mN-ZA-M/'</code></p> </blockquote> <p>To rot-13 encrypt a region quickly, for instance.</p> <p>(Incidentally, The keystrokes <code>C-1</code> through <code>C-0</code> and <code>M-1</code> through <code>M-0</code> are the same (by default) as <code>C-u</code> 1 through <code>C-u</code> 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.)</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1229609#1229609 7 Answer by Galghamon for The single most useful Emacs feature Galghamon 2009-08-04T20:01:51Z 2009-08-04T20:01:51Z <p>How about the newbie-friendly</p> <pre><code>C-h k </code></pre> <p>which shows the documentation for the command associated with any key.</p> <p>Or </p> <pre><code>C-h f </code></pre> <p>which shows the documentation for any particular command, given its name (i.e. what you would type after M-x). </p> <p>I find these to be very helpful while learning emacs.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1229790#1229790 0 Answer by fortran for The single most useful Emacs feature fortran 2009-08-04T20:34:31Z 2009-08-04T20:34:31Z <p>Regular expression search backwards, just because it has a funny keystroke:</p> <p>ctrl+alt+shift+5</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1239567#1239567 1 Answer by Karl Voigtland for The single most useful Emacs feature Karl Voigtland 2009-08-06T15:12:02Z 2009-08-07T21:12:04Z <p><a href="http://www.emacswiki.org/emacs/Bongo" rel="nofollow">Bongo</a></p> <p>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.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1264102#1264102 0 Answer by ayman for The single most useful Emacs feature ayman 2009-08-12T03:44:37Z 2009-08-12T03:44:37Z <p>The fastest way to checkin/out: <code>M-x svn-status</code></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1467258#1467258 1 Answer by Carlos Rendon for The single most useful Emacs feature Carlos Rendon 2009-09-23T16:45:31Z 2009-09-23T16:45:31Z <pre><code>multi-occur-in-matching-buffers </code></pre> <p>Allows you to regex search inside of all open buffers that match a regex</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1478474#1478474 0 Answer by Cheeso for The single most useful Emacs feature Cheeso 2009-09-25T17:02:52Z 2009-09-25T17:02:52Z <p><a href="http://www.emacswiki.org/emacs/MSTFS" rel="nofollow">TFS + emacs</a> 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. </p> <p>Maybe not the <em>single most useful</em> feature, but very useful.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1614592#1614592 0 Answer by Richard Riley for The single most useful Emacs feature Richard Riley 2009-10-23T16:36:26Z 2009-10-23T16:36:26Z <p>Check out company-mode.</p> <p>Excellent completion interface.</p> <p>be sure to try C-s and the C-o to filter the completion candidates.</p> <p>My completion set up is here:</p> <p><a href="http://richardriley.net/projects/emacs/dotprogramming" rel="nofollow">http://richardriley.net/projects/emacs/dotprogramming</a></p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1732958#1732958 1 Answer by Zano for The single most useful Emacs feature Zano 2009-11-14T01:51:46Z 2009-11-14T01:51:46Z <p><code>M-x toggle-truncate</code> 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.</p>