Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>For Vim:</p> <ul> <li><p>Vim has better integration with other tools (shell commands, scripts, compilers, version control systems, ctags, etc.) than most editors. Even something simple like <code>:.!</code>, to pipe a command's output into a buffer, is something you won't find in most GUI editors.</p></li> <li><p>A tabbed interface is not as nice as the "windowed" interface that Vim/Emacs give you. You can see two or more files at the same time side-by-side. The more you can see on-screen, the more you free your mind to think about your problem rather than doing mental bookkeeping of variable names and function signatures.</p></li> <li><p>Don't underestimate the power of Vim regular expressions. There are a lot of Vim-specific extensions to match a specific column, a mark, the cursor position, certain classes of characters (keywords, identifiers) etc.</p></li> <li><p>Integrated <code>diff</code> and <code>grep</code> (platform independent so you don't need to download and learn a new tool every time you change computers).</p></li> <li><p>Visual block mode (to edit columns) is something many editors lack, but that I can't live without. I have shocked and awed people at work using just this, making some edit in a few keypresses that someone would've otherwise spent ten minutes doing manually.</p></li> <li><p>Multiple copy/paste registers. When you only have one, you end up going through strange contortions to avoid clobbering the clipboard. You shouldn't have to.</p></li> <li><p>Vim's undo/redo system is unbeatable. Type something, undo, type something else, and you can still get back the first thing you typed because Vim uses an undo tree rather than a stack. In almost every other program, the history of the first thing you typed is lost in this circumstance.</p></li> <li><p>Moving around, copying, pasting, and deleting text is insanely fast in Vim. The commands are simple, single keypresses, and composable. Add up all the times you do a careful, laborious mouse highlight and Ctrl-X, then replace them all with a <code>da(</code> (delete a set of matching parens and everything in them). It saves more time than you'd think</p></li> <li><p>The little things, like <code>*</code> to search for the word under the cursor, or <code>.</code> to repeat a command, or <code>%</code> to bounce between an opening and closing paren. Way too many of these to list.</p></li> <li><p>Built-in scripting language and powerful key-mapping and macro ability so the editor can be extended in whatever ways you need. Tons of scripts already written and downloadable.</p></li> </ul> <p>If you look closely enough, you'll find that even features that other editors also have, Vim often does better. All editors have syntax highlighting, but Vim has a syntax file for nearly every file format under the sun, often with lots of configuration options, and it's dirt-simple to write your own. Lots of editors handle different file encodings OK, but Vim gives you very specific and foolproof ways of setting file encodings and converting between them. The very first thing that impressed me about Vim is how perfectly it handles tab/space indentation options and Unix/DOS linebreaks compared to other editors that I had problems with at the time.</p> <p>Many of these points apply equally well to Emacs (in different but usually equally-powerful ways).</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload