vote up 2 vote down star
2

I recently started picking up VI, going through some tutorials and trying to get used to it. But I still have some questions about it.

It seems to be nice for small one file changes, but as soon as I start to try doing bigger things it seems to be lacking. For example I'm used to have code formatting, import organizing, simple overview over all packages and other things that an IDE gives me. I saw some tutorials on how to use VI as an IDE, but it felt awkward at best.

Now I'm just wondering, what are the typical use cases for VI? Is it typically used to edit small files, or can it be used for larger projects? And if you use it in larger projects, how do you make it work? Or would it be a lot easier to use an IDE with VI keybindings?

flag

75% accept rate

10 Answers

vote up 9 vote down check

People use non-IDE editors like Vi(m) for coding due to the following reasons,

  1. They are non-distractive, allows you to concentrate on the job.
  2. They do not clutter you screen area, offers you more code space
  3. They are faster
  4. They have better/faster/cooler text manipulation at the stroke of the finger
  5. You happen to move your hands out of the keyboard less to hold the mouse, drag it here and there and click.
  6. They also have the flexibility to support other tools like debugger, document viewer, etc.
  7. They also have ways to get things like code folding, etc.

For a normal programmer whose ideal work cycle is sit, write code, test, debug, more code, test debug.. Vi offers a simplistic yet powerful environment to get the work done faster and more efficiently.

For someone who had years of using some IDE, it might be like using some prehistoric tool, but once they have been through the initial days, then there is no looking back. They'd feel like there is no better thing.

link|flag
1  
+1 Very good points. Notably the 4th. – LB Aug 21 at 19:03
vote up 4 vote down

I've used VI(M) and Emacs as my primary editors for years... I've tried switching to IDEs but find they can't get out of my way enough. I always end up back in VI(M) or Emacs after a while. One major reason is that I find my hands need to leave the keyboard too much in IDEs as they require the mouse too often... And I'm too lazy to setup my own shortcuts for everything.

link|flag
vote up 4 vote down

Why, oh WHY, do those #?@! nutheads use vi?

link|flag
2  
rather than vim? no idea – rampion Aug 21 at 9:19
2  
It doesn't matter. – Pawka Aug 21 at 11:19
Downvotes for what? Read article at 1st! – Pawka Aug 31 at 7:01
vote up 3 vote down

Here's why I use it.

  1. it's fast to start up
  2. it's available across multiple platforms and is on all Unix machines
  3. it's fast to use (keystrokes for common operations, operations based around words/paragraphs etc.)

However, I use IDEs for large scale development work, since I can't believe they can be beaten for productivity, given their code-awareness and refactoring capability. I use Eclipse, but I plug a VI editor emulator into it. See this answer for more details.

link|flag
While you are right on the IDEs productivity - you can always install additional tools to enable your hands to never reach for the mouse. I know a .NET programmer hates the mouse and has his entire PC setup for keyboard use (even firefox & VS2008) – Audioillity Aug 21 at 8:55
vote up 3 vote down

I've done anything that you'd call a big project in python (only little test scripts), but I use Vim exclusively for writing large embedded C applications and I have never really felt the need for an IDE.

Vim is fast to start up, extremely fast to use and (with a bit of customisation) can do most things that an IDE can do. It'll do code completion, code auto-indentation and reformatting and it is very good at refactoring. The project plugin makes it very easy to manage projects with lots of files and the taglist plugin is great for browsing source code. It also allows you to have the C code open side-by-side with python code, assembly code and latex documentation without having to use a different tool for each.

Overall though, I think there is one really valuable thing that Vim gives you that very few other editors do and I would find it very hard to lose that: I can have a window split into three parts like this:

GVIM Split Window

Each of the subwindows can either show a separate file or (as in the screenshot) a separate part of the file. I imagine emacs can do this (although I could be wrong), but I doubt many IDEs can. This can be invaluable for refactoring and for referring to other parts of the file.

link|flag
vote up 2 vote down

I saw some tutorials on how to use VI as an IDE, but it felt awkward at best.

There's one thing to do at the very beginning: throw your sense of aesthetics overboard. You will never get the same kind of graphical experience in VIM as you do in a decent IDE.

That said, VIM actually does offer many of the features of a full-blown IDE and has a lot of advantages besides. I use VIM for almost all of my developing work and all of my text documents (using Vim-LaTeX) – even though I've actually paid money for Apple’s office suite, iWorks.

There's one point that's still nagging me, though: I can't get IntelliSense to work. For me, that's a huge problem, especially when using languages such as VB, C# or Java, for which excellent IDE support exists.

So, the learning curve for VIM is steep but once you've passed a certain point it's everything but awkward. In fact, compared to VIM's editing experience, you will find that it's the IDEs that suddenly feel awkward because while they're good at bookkeeping stuff, they suck at editing.

link|flag
You do know about ViEmu right? Then you get Vim and intellisense. – Brian Rasmussen Aug 21 at 8:58
@Brian: haven’t tried it, and I don’t use Windows any more. It’s also not the same since VIM thrives on the integration into the terminal, something that’s completely lost here. I like working with makefiles and bash scripts. – Konrad Rudolph Aug 21 at 9:02
vote up 2 vote down

Though not always as pretty, (g)vim can be configured to do everything that an IDE can do... and some more. You just need to find the right plugins.

After a period of getting used to, other ide's and text editors will fell clumsy and inefficient in comparison.

vim is addictive.

link|flag
vote up 1 vote down

I frequently work on a remote system, programming for a cluster, or editing config files on a headless box. All of these could be done with a file transfer, a regular IDE, and another file transfer, but it is so much faster to just use VIM through SSH.

link|flag
vote up 0 vote down

As usuall: Choose your tool depending on the work you have to do! ;-) I'm using Vim and Visual Studio. You don't have to choose only one.

  • If you need an IDE, use an IDE. Vim is made for text manipulation.
  • It supports any languages. Try to edit a Ruby script with Visual Studio.
  • Performance on large files is much better than for most IDEs. Try to analyze a logfile having 100k lines and more using your IDE.
  • It runs on many plattforms and you can use it via a remote console, if you have to edit files on a server.
  • ...

IDEs are specialized tools, which are good for problems they are made for. Vim is an incredible flexible and powerfull generall purpose tool.

link|flag
vote up 0 vote down

Vim is not very good at code awareness. What it is good at is text manipulation. It provides you with the tools for you to edit text, not to edit for you. If you just do "small" edits and don't read up on the occasional "vim commands you wish you know" you'll never understand the power provided.

code formatting

This is handled while you type.

import organizing

Vim won't be able to remove unused imports but if you select the import lines

:'<,'>sort

simple overview over all packages

:vs .

This will open a vertical window containing the current working directory :)

In conclusion, vim can't replace your IDE but it will let you edit you text.

link|flag

Your Answer

Get an OpenID
or

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