30

I'm considering whether I should start using VIM again instead of an IDE. What are the most useful features of VIM that aren't standard in an IDE?

Tamara Wijsman
  • 8,259
  • 14
  • 58
  • 94
Casebash
  • 7,662
  • 5
  • 41
  • 62

16 Answers16

32

I don't think its necessarily the advanced features of VIM that make it so powerful. Its the fact that you never have to take your hands off the keyboard to do anything. Finding something in a huge file is as simple as a couple of keystrokes. Opening and closing multiple files in the same window is incredibly fast as well.

While it may not seem intuitive at first, its well worth your time. Even if you don't use it as your standard IDE (I generally use Visual Studio or Eclipse, for example), you'll find your self using VIM to quickly open and edit files because it becomes way faster than waiting for the IDE to load.

Invest the time to learn how to use VIM well and you'll never regret it. I'd say its comparable to learning to touch-type.

Bryan Hales
  • 397
  • 3
  • 4
  • 3
    This answer is probably the most useful feature for Vim, it is also one of the only. Anything programmed for Vim can easily be applied to IDE's too, it's just text processing after all... – Tamara Wijsman Sep 15 '10 at 12:07
  • 4
    +1 Whilst I am an emacs devotee, the same argument applies. The modern IDEs are far too "graphical", for *text* editors. – Orbling Dec 22 '10 at 13:42
22

For me the :global command is a killer app. It will execute arbitrary vim commands on any line that matches (or does not match) a regex.

Here are some examples:

The default behaviour is to list out every line that matches, so:

:g/TODO:/

will list every line that contains the text "TODO:"

change 'Mickey' to 'Minnie' on any line that also contains the word 'Mouse'

:g/Mouse/ s/Mickey/Minnie/

The commands can have their own range, so this will delete from every line with "TODO:" to the next blank line:

:g/TODO:/ .,/^$/ d

Use :g! to execute on every line that does NOT match the regex, e.g. to replace "emacs" with "vim" except on lines that contain the word "sucks":

:g!/sucks/ s/emacs/vim/
Dave Kirby
  • 401
  • 3
  • 3
  • Great tricks with global command ! I had never thought of using them like that. – Xavier T. Apr 14 '11 at 09:47
  • Eclipse supports regex searching of files, either as individual files, projects, or across projects in the same workspace. Regex replace is also supported to some extent, but I believe vim has a much more powerful regex capability. – Thomas Owens Aug 18 '11 at 11:40
16

I find the ability to delete everything in between a set of paired symbols incredibly useful. For example, quite often, I'll find myself wanting to replace a string in the code. So, di" while the cursor is in the block will delete the string, while keeping the "" intact, and put the cursor in between the two quote characters. da" does the same thing, but deletes the quote characters too.

Chinmay Kanchi
  • 6,173
  • 2
  • 39
  • 51
9

'Insertion mode keyword completion'. Ctrl-P and Ctrl-N in insert mode to search through the text to try and complete whatever variable name you are typing. I've never seen this in any other IDE and I really miss it. Code completion in IDE's just isn't the same.

Lang Sharpe
  • 194
  • 2
  • 2
    You also have _proper_ code completion if you want, using omni-complete. `^X^O` omni-completes in insert mode, if you have it enabled. But you're right, I find myself using keyword completion far more than omni-complete. – Chinmay Kanchi Sep 15 '10 at 11:41
  • @Chinmay: I think you have the meaning of "proper" backwards. Proper code completion completes anything using the principle of locality, even if you are writing text instead of code. – ninjalj Sep 26 '10 at 21:40
  • SlickEdit has a similar feature; and it's very IDE-like – user281377 Dec 22 '10 at 12:26
  • 8
    I disagree completely. Modern IDEs (Visual Studio, Eclipse, …) have a kind of code completion that rivals (and in fact surpasses!) Ctrl-N *easily*. If you haven’t seen this in IDEs, look again at the current versions. And Omni-Complete unfortunately doesn’t work properly. – Konrad Rudolph Dec 22 '10 at 18:33
8

Another feature I find incredibly useful is the ability to change indentation. :15,30>> indents all lines from 15-30 (inclusive) twice, while :15,30<< de-indents the same lines twice.

Chinmay Kanchi
  • 6,173
  • 2
  • 39
  • 51
6

the command dd (delete current line). I use this one so much.

Also, being able to type something like 3dd and delete the next 3 lines is wonderful. I've never seen this in another editor =D

Alex Hart
  • 191
  • 6
  • Netbeans almost has this, ^X with no selection will *cut* the current line. – Alan Pearce Oct 03 '10 at 19:39
  • @Alan: No, NetBeans has jVi :) – dr Hannibal Lecter Oct 24 '10 at 17:30
  • ^K deletes the line and ^u3^k would delete 3 lines in emacs. shift-delete does the same in visual studio. – Raoul Nov 29 '10 at 12:46
  • Alan: dd also *cuts* the current line in that sense that it can be inserted with p later – user281377 Dec 22 '10 at 12:27
  • 3
    @Raoul, we know there's an emacs series of n 3-keys combinations to replicate every vim command - still, 3dd is poetry. – cbrandolino Dec 22 '10 at 13:18
  • Back in the DOS days, ctl-y was "yank" out the current line in pretty much every editor and IDE out there. Whoever decided to throw away those perfectly good conventions and re-write them to make it "redo" now has me seriously annoyed. I *still* to this do occasionally hit ctl-y to delete the current line and instead end up with some stuff re-done that I didn't want! :-) – Brian Knoblauch Jan 12 '11 at 18:09
  • There's an emacs command for everything. http://xkcd.com/378/ – philosodad Jan 18 '11 at 00:06
  • The ISPF editor has very similar commands. – TZHX Oct 18 '12 at 07:40
6

The c command. For example, ci" to change inside quotes. cw to change word. Lots of handy tricks with it.

Daenyth
  • 8,077
  • 3
  • 31
  • 46
5

The . command. It repeats the last command.

Adam Jaskiewicz
  • 1,128
  • 7
  • 8
3

That I can use hjkl to move the cursor without having to leave the homerow of the keyboard. I have most programs (such as PDF readers), which let you change keybindings, set to use Vim movement keys for scrolling etc.

Anto
  • 11,157
  • 13
  • 67
  • 103
3

Esc ! } will shove the current paragraph off to a command line filter like fmt or wc or which and return results to the editor.

Jé Queue
  • 3,937
  • 2
  • 29
  • 37
3

Rapid access to the command-line. CTRL+Z or :wqa will get me a command line in less than 1sec without my hand leaving the keyboard.

luispedro
  • 131
  • 4
1

Did you know that there is a vi plugin for eclipse? It costs 15 euro (20ish US$) but it is so worth. No more dd in the middle of a document, and missing all the tiny useful things.

Perhaps a bit off topic but I thought it was worth pointing out.

lorenzog
  • 419
  • 2
  • 8
1

This is rather hard to answer, due somewhat to the vagueness of the question, and somewhat to the fact that IDE's differ, and many provide features that other don't (and the fact that I've just a few of them).

However, what I believe distincts Vim from other editors (yes, even Emacs, on this one) is that it is really a great editor. I've in the passing of time, used many editors, and can honestly say that very few come with such a complete set of features for manipulating text, like Vim does.

My style of manipulating text for example, includes very often use of (line/selection of several lines) duplication, and moving (line/selection of several lines) up and down, for which I've long ago defined quick shortcuts. I miss those features in most IDE's (although I've heard ReSharper for VS has something similar).

Rook
  • 19,861
  • 9
  • 53
  • 96
0

Depending on what you language you are programming, stick with the ide, or get the ide that offers the most refactorings that you can find, get resharper for visual studio if you are doing c#, intellij for java, or visual assist for visual studio, max out the refactorings in eclipse or netbeans.

We should be moving from manipulating text to manipulate code, refactoring tools give you that ability. If vim does give you all the features fine, I for one don't really want to deal with a text editor anymore

  • 3
    This is pretty much nonsense. Yes, refactoring is an important tool, but the code doesn't write itself. A good text editor contributes _far_ more to a programmer's productivity than a good refactoring tool. – Chinmay Kanchi Sep 14 '11 at 19:20
-1

Table Column Select

This doesn't seem to be in the popular IDEs, and if it is they keep it well hidden. This is really handy for testing regex against a column in CSV data file.

sal
  • 2,078
  • 1
  • 15
  • 19
-3

Most IDEs don't allow you to split the screen. I love that feature in VIM.

projecktzero
  • 101
  • 2
  • 5
    Most IDE's don't? I think most actually do so, at least those that I have used. – Anto Jan 17 '11 at 19:52
  • Can you give some examples? – projecktzero Feb 10 '11 at 19:17
  • 1
    Most IDE's handle screen splitting differently than Vim/Emacs. They do it with tabs usually. These are harder/impossible to manipulate with the keyboard (compare having 50 files open in Emacs vs. having 50 files open in Eclipse and you'll quickly see Emacs win). – jsternberg Aug 18 '11 at 18:28
  • Most IDEs that do have splitscreen don't provide easy methods of navigating/adjusting a-la `` – Wayne Werner Nov 14 '11 at 19:46