vote up 5 vote down star
3

One of the reasons I usually don't use an IDE for development is that I'm so used to vi keybindings that I usually end up messing up my text and putting in lots of ":w"s, and I can't use vi's powerful regex replace mechanism. Are there any IDEs that allow you to configure vi keybindings or use vi as the editor within the IDE?

Related:

Is it possible to use vi or vim keymap in NetBeans?

flag

60% accept rate

13 Answers

vote up 6 vote down check

There's jVi for NetBeans. There's also viPlugin for Eclipse, but it's not free. :(

link|flag
Awesome. Thanks so much! I've already installed it. – Phil Nov 17 '08 at 1:18
See also stackoverflow.com/questions/483962/… , which mentions viex: sourceforge.net/projects/viex – therefromhere Sep 9 at 20:07
@therefromhere: Thanks. I added cross-referencing links to both questions. – Bill the Lizard Sep 9 at 20:13
vote up 0 vote down

Check out jVi.

link|flag
vote up 11 vote down

There is ViEmu which provides vim key bindings for Visual Studio. I haven't used it, but I probably would if I were working in VS and not actually using vim.

Also, I know that SlickEdit has a vi keybinding option.

link|flag
I've used ViEmu and it works great. – Steve Rowe May 5 at 18:44
vote up 1 vote down

Editra has vi emulation, is cross platform, handles syntax highlighting, etc... seems nice. I've just started using it at home on my mac, and will probably switch to it in the office too.

link|flag
vote up -4 vote down

Most IDE's that I know of (eclipse, netbeasn, VS200X) have replace with regex features available, Im not a big vi user, what do you really want to be able to do?

My advice is to really take the time to learn the IDE of choice and you will soon be a very efficient (in different ways) developer within that environment, they wouldnt be popular IDE's if there were in efficient.

I switch between IDE's a lot, and you end up just getting used to pushing the wrong key combinations, its not that bad.

link|flag
Mostly we want to be able to do all our editing without moving our hands from the home row - no going to cursor keys, no page up/page down keys, and no mouse usage. And we want to be able to navigate the files really efficiently. – Hamish Downer Sep 9 at 19:49
In eclipse: cntrl+shift+r filename I rarely if ever use the mouse in eclipse. – Stefan Kendall Sep 9 at 20:01
vote up 0 vote down

Tasking EDE has a vi mode, if you're lucky enough to be coding for one of the embedded devices it targets.

link|flag
vote up 3 vote down

PIDA is an IDE that has real Vim integrated, embedded, and smoothly controlled. In my opinion, no amount of emulation beats actual Vim, where you can use all your Vim plugins, syntax highlighting etc.

Obligatory Screenshot.

link|flag
vote up 2 vote down

There's IDEAVim for IntelliJ which is rad.

link|flag
vote up 2 vote down

You can try free Komodo Edit which has intgrated vi mode.

link|flag
vote up 3 vote down

For Visual Studio there's ViEmu (http://www.viemu.com/). Unfortunately it is not free, and it is not 100% Vim. I've been using it for 1-2 years now and is really happy with it, as it allows me to do most of what I'm used to from Vim.

I doesn't replace all of VS's key bindings, so you can actually mix VS and Vim commands, which is nice. However, it does make life a little harder if you want to use other plug-ins such as ReSharper and the like.

link|flag
vote up 2 vote down

For Eclipse there is also vrapper, It is free. I use it for two weeks and works great.

link|flag
vote up 0 vote down

MonoDevelop can both embed vim as the editor and the default editor has a vi mode.

MonoDevelop is now available on Windows and Mac as well as Linux.

link|flag
vote up 0 vote down

QT Creator also has a vi mode for it's editor.

However, not all features of vim are supported. Really it is good if you are looking for vi style editing, but doesn't have enough features to really feel like you are working in vim.

link|flag

Your Answer

Get an OpenID
or

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