vote up 30 vote down star
30

The Pragmatic Programmer recommends that you should use one text editor for everything. My chosen weapon editor is Vim.

So I want to collect all the ways in which Vim (and the Vim keybindings) can be used and setting up your computer to make Vim work well. This includes how to embed Vim in your IDE, web browser, email client, command shell ...

But I don't want Vim tips - there are other questions for them. I want tips to get into Vim, or Vim mode. Though tips about Vim mode not in an editor would be allowed (e.g. tips for vi mode when using Bash).

Update: Going quite well so far, with ways to edit in Vim/gVim, or to get vi mode in Firefox, Safari, Thunderbird, many IDEs and command line applications, MS Outlook and Word. But I'm wondering if there are more. Particular applications I wonder about include

  • OpenOffice.org
  • KOffice
  • Kmail
  • Evolution
  • Internet Explorer
  • Google Chrome
  • GIMP and Photoshop ... (only joking ;)
flag

20 Answers

vote up 6 vote down

For Thunderbird, the external editor extension allows you to use gVim to write your emails, or you could use Vimperator's sister extension - muttator.

link|flag
vote up 6 vote down

For Firefox, It's all text and ViewSourceWith allow you to use an external editor for text boxes. You generally want to use

gvim -f

The -f option means that will not fork a process, so this allows the calling program to wait until gVim closes. Without the -f option the above plugins won't work very well ...

If you want to go further then investigate the vimperator. Scroll pages with hjkl, go back and forward with H and L, and many more keybindings familiar to Vim users.

It is not at version 1.0 yet, but jV makes text areas work like vi.

And finally there is an experimental way to directly embed the actual Vim in Firefox using embedded editor - though it requires mozplugger and will only work on Linux.

For more details see this question about using vim with firefox.

link|flag
The main thing I don't like about It's All Text is that I can't find any way to launch the external text editor using the keyboard. What good is it if I have to use my mouse to launch the editor? – Chad Birch May 5 at 18:21
1  
@Chad Birch: If you look at the preferences for It's All Text, you'll see there is a "Hot Key" preference that allows you to set a keyboard shortcut. I use Ctrl-E – Hamish Downer May 5 at 18:29
1  
try vimperator & hit ctrl-i while in a text-area ;) – dysmsyd May 18 at 16:30
vote up 5 vote down

You can set your keyboard to swap Caps Lock and Escape.

With the standard Ubuntu/GNOME desktop, go through the menus: System -> Preferences -> Keyboard -> Layouts tab. Then hit the "Layout Options" button, click on the triangle next to "Caps Lock key behaviour" and select "Swap ESC and CapsLock".

Not strictly part of Vim, but it makes Vim so much nicer to use.

Also see this question about making the ESC key easier to get to.

link|flag
I guess that this would be cool. But I tried it and now I know that I wouldn't survive the first three days. – Manni May 7 at 7:56
vote up 2 vote down

There are some Vim plug-ins for Eclipse, see http://www.vimplugin.org/.

There is also a commercial one at http://www.viplugin.com/viplugin/.

I haven't used either, but I would bet the pay one is better.

link|flag
I'm a user of viplugin. It works but it's not great. However it's better than nothing. – Peter Severin May 6 at 21:20
vote up 6 vote down

When using Bash, you can do

$ set -o vi

to enable vi editing mode. You start in insert mode, but you can press Escape and go forward and backwards with h and l, delete the previous word with db (or dB for back to the previous gap defined by spaces) ... If you like it, stick

set -o vi

in your .bashrc file.

Also see this question about vi mode and readline.

link|flag
vote up 13 vote down

Put this in your ~/.inputrc:

set editing-mode vi

That gets you vi mode in everything that uses readline (e.g. mysql client).

link|flag
vote up 1 vote down

One last link to another question - this one about vi mode plugins for IDEs.

link|flag
vote up 6 vote down

I can highly recommend ViEmu which is a plugin for Visual Studio giving you nearly 100% Vim capability while retaining things like Intellisense. It's great for C# coding. There is also a version of ViEmu for Word, Outlook and for SQL Server if you do a lot of those and want the power of Vim there as well.

link|flag
vote up 2 vote down

In the game NetHack you can use vi keyboard mode. Just set the setting to 0 (zero):

number_pad
Use the number keys to move instead of [yuhjklbn] (default 0 or off).
link|flag
vote up 2 vote down

Vim can be used as PAGER and for viewing man pages.

Many tools, e.g. Git, also let you specify a DIFF program (often via a configuration option or environment variable); Vim's diff mode works very well for that.

link|flag
vote up 3 vote down

I've seen quite a few examples around the web of Autohotkey being combined with gvim in order to increase ubiquity. There are probably more.

link|flag
vote up 4 vote down

Set your $EDITOR to Vim.

At least in Linux, most environment aware applications will draw on this variable to choose the editor whenever they need you to edit something.

link|flag
vote up 0 vote down

For Mac users I just came across the Vi Input Manager plugin which "patches the Cocoa Text System to add a Vi-like command mode". This affects applications including "Safari, TeXShop, XCode".

Looks cool. (Though I am not a Mac user).

link|flag
vote up 1 vote down

Just for completeness, I will mention that you can use command line email clients such as mutt and pine. And with them you can use any command line editor for writing your emails.

link|flag
vote up 2 vote down

Trying to use Vim for everything is overkill. While the book does say

Tip 22

Use a Single Editor Well

At a high level, it also says “use the right tool for the job.” It’s better to know how to use one text editor really well than to be barely competent with a half-dozen; but it would be significantly worse to master only a single program.

link|flag
vote up 2 vote down

This site has an AutoHotkey script for Windows that will let you set up some basic Vim keystrokes in any application (I use hjkl for motion everywhere now).

link|flag
vote up 1 vote down

MonoDevelop has a vi mode too.

Also check Eclim. It started to integrate the functionality of Vim and Eclipse, but now it seems it is beyond that. I have not used it though, but its release notes shows that it supports Python, PHP and C++ and markup languages.

link|flag
vote up 3 vote down

For Firefox use Vimperator, and hit Ctrl-I while your keyboard focus is inside a text area.

link|flag
vote up 1 vote down

For your Vim gaming needs: Word War vi - a retro styled side scrolling shoot'em up arcade game for Linux.

link|flag
vote up 0 vote down

I have half-followed the instructions at the Vim tips wiki but used my own little script for AutoHotKey:

; edit in Vim...
#v::
WinGetActiveTitle, VimTargetWindow
SendInput ^a^c
RunWait c:\Program Files (x86)\Vim\vim72\gvim.exe --servername ClipBrd +ClipBrd +only
If not ErrorLevel
{
    WinActivate %VimTargetWindow%
    Sleep 10
    SendInput ^a^v
}
return

However, it does clobber the clipboard, and is a bit hit and miss whether it gets back to the right application if you've been doing things in the meantime...

link|flag

Your Answer

Get an OpenID
or

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