Vim is a free and open-source modal text editor available for most major platforms. It allows high efficiency in many text editing tasks but has a steep learning curve. To learn the basics, try ":help vimtutor".

learn more… | top users | synonyms (2)

707
votes
15answers
176k views

How do I indent multiple lines quickly in vi?

Should be trivial, and it might even be in the help, but I can't figure out how to navigate it.
359
votes
74answers
37k views

What are the dark corners of Vim your mom never told you about? [closed]

There is a plethora of questions where people talk about common tricks, notably "Vim+ctags tips and tricks". However, I don't refer to commonly used shortcuts that someone new to Vim would find cool. ...
342
votes
12answers
137k views

How to replace a character for a newline in Vim?

I'm trying :%s/,/\n/g but it inserts what looks like a ^@ instead of an actual newline. The file is not in DOS mode or anything. What should I do? EDIT: If you are curious, like me, check the ...
303
votes
4answers
51k views

What is the <leader> in a .vimrc file?

I see <leader> in many .vimrc files, and I am wondering what the meaning of it is? What is it used for? Just a general overview of the purpose and usage.
274
votes
10answers
52k views

vim clear last search highlighting

After you do a search in vim you get all the occurrences highlighted, how can you disable that? I now do another search for something gibberish that can't be found. Is there a way to just ...
272
votes
8answers
67k views

Merge multiple lines (two blocks) in Vim

I'd like to merge two blocks of lines in Vim, i.e. take lines n..m and append them to lines a..b. If you prefer a pseudocode explanation: [a[i] + b[i] for i in min(len(a), len(b))] Example: abc def ...
257
votes
15answers
96k views

Vim and Ctags tips and tricks [closed]

I have just installed Ctags (to help with C++ development) with my Vim (or rather gVim), and would like to find out your favorite commands, macros, shortcuts, tips that go along with it... Share your ...
252
votes
12answers
43k views

How to use vim registers?

I only know of one instance using registers is via CtrlR* whereby I paste text from a clipboard. What are other uses of registers? How to use them? Everything you know about VI registers (let's ...
252
votes
5answers
123k views

Tab key == 4 spaces and auto-indent after curly braces in VIM

How do I make Vi-Vim never use tabs (converting spaces to tabs, bad!), makes the tab key == 4 spaces, and automatically indent code after curly brace blocks like emacs does? Also, how do I save these ...
240
votes
3answers
23k views
239
votes
5answers
38k views

How to do case insensitive search in Vim

I'd like to search for an upper case word, for example COPYRIGHT in a file. I tried performing a search like: /copyright/i but it doesn't work. I know that in Perl, if I give the i flag into a ...
235
votes
37answers
35k views

Why should I use an IDE? [closed]

In another question, Mark speaks highly of IDEs, saying "some people still just dont know "why" they should use one...". As someone who uses vim for programming, and works in an environment where ...
222
votes
12answers
93k views

How to effectively work with multiple files in Vim?

I've started using Vim to develop Perl scripts and am starting to find it very powerful. One thing I like is to be able to open multiple files at once with e.g. vi main.pl maintenance.pl and then ...
194
votes
11answers
53k views

Duplicate a whole line in Vim

How do I duplicate a whole line in Vim in a similiar way to CTRL+D in IntelliJ IDEA/Resharper or Ctrl Alt Arrow in Eclipse?
183
votes
13answers
94k views

How to move to end of line in vim

I am somewhat clumsy in my vi knowledge. I know how to generally move around in command mode, specifically, jumping to lines, etc. But what is the command to jump to the end of the line that I am ...
182
votes
3answers
20k views

How does the vim “write with sudo” trick work?

Many of you have probably seen the command that allows you to write on a file that needs root permission, even when you forgot to open vim with sudo: :w !sudo tee % The thing is that I don't get ...
179
votes
5answers
25k views

How to paste text into Vim command line

I'd like to paste yanked text into Vim command line. Is it possible?
175
votes
15answers
16k views

In vim is there a way to delete without putting text in the register? [duplicate]

Possible Duplicate: Any way to delete in vim without overwriting your last yank? Using vim I often want to replace a block of code with a block that I just yanked. But when I delete the ...
175
votes
4answers
34k views

To switch from vertical split to horizontal split fast in Vim

How can you switch your current windows from horizontal split to vertical split and vice versa in Vim? I did that a moment ago by accident but I cannot find the key again.
168
votes
8answers
47k views

How do I make git use the editor of my choice for commits?

For example, I would prefer to write my commit messages in vim, but it is opening emacs. How do I configure git to always use vim instead? Note that I want to do this globally, not just for a single ...
166
votes
8answers
53k views

Vim delete blank lines

What command can I run to remove blank lines in Vim?
159
votes
34answers
33k views

Is learning VIM worth the effort? [closed]

As a programmer I spend a lot of hours at the keyboard and I've been doing it for the last 12 years more or less. If there's something I've never gotten used to during all this time is these annoying ...
158
votes
11answers
61k views

Vim 80 column layout concerns

I feel like the way I do 80-column indication in Vim is incorrect: set columns=80. At times I also set textwidth but I like to be able to see and anticipate line overflow with the set columns ...
154
votes
9answers
43k views

How do I fix the indentation of an entire file in Vi?

In Vim, what is the command to correct the indentation of all the lines? Often times I'll copy and paste code into a remote terminal and have the whole thing messed up. I want to fix this in one ...
140
votes
9answers
45k views

Using Vim's tabs like buffers

I have looked at the ability to use tabs in Vim (with :tabe, :tabnew, etc.) as a replacement for my current practice of having many files open in the same window in hidden buffers. I would like every ...
129
votes
11answers
62k views

Make Vim show ALL white spaces as a character

I can't find a way to make Vim show all white spaces as a character. All I found was about tabs, trailing spaces etc.
128
votes
2answers
18k views

vim and NERD Tree extension - adding a file

Is there an easy way to add a file in nerd tree? Currently I go into my shell, add the file and then refresh the tree.
126
votes
38answers
33k views

Favorite (G)Vim plugins/scripts? [closed]

What are your favorite (G)Vim plugins/scripts?
126
votes
8answers
30k views

Close file without quitting VIM application?

I am new to VIM. I use the :e and :w commands to edit and to write a file which are very convenient. I am not sure if there is "close" command to close the current file without leaving VIM? I know ...
122
votes
7answers
39k views

How to run mvim (MacVim) from Terminal?

I have MacVim installed and I am trying to set it up as the editor for Git (version control), but I can't run 'mvim' from the command line as it isn't recognised. How do I setup mvim so I can run it ...
113
votes
60answers
14k views

What is the best way to force yourself to master vi? [closed]

A good while ago, I read an article by the creator of viemu, clearing up a lot of the misconceptions about vi, as well as explaining why it's a good idea (and why it's been very popular for the last ...
111
votes
6answers
45k views

How do I do redo (i.e. “undo undo”) in Vim?

In Vim, I did too much undo. How do I undo this (that is, redo)?
111
votes
7answers
25k views

Autocompletion in Vim

In a nutshell, I'm searching for a working autocompletion feature for the Vim editor. I've argued before that Vim completely replaces an IDE under Linux and while that's certainly true, it lacks one ...
108
votes
10answers
24k views

Using Caps Lock as Esc in Mac OS X

How do I make Caps Lock work like Esc in Mac OS X?
105
votes
15answers
71k views

How do I convert DOS files to Linux files in vim?

If I open files I created in Windows, the lines all end with ^M. How do I delete them all in once?
105
votes
10answers
56k views

How do I insert text at beginning of a multi-line selection in VI/VIM?

In vim, how would I go about inserting characters at the beginning of each line in a selection? For instance, let's say I want to comment out a block of code by prepending '//' at the beginning of ...
104
votes
5answers
19k views

Turning off auto indent when pasting text into vim

Unfortunately, I am not an experienced vim user. But, I am making the effort to learn it. When I paste code into my document from the clipboard, I get extra spaces at the start of each new line: ...
103
votes
45answers
16k views

Simple VIM commands you wish you'd known earlier [closed]

I'm learning new commands in VIM all the time, but I'm sure everyone learns something new once in a while. I just recently learned about this: zz, zt, zb - position cursor at middle, top, or bottom ...
102
votes
6answers
24k views

How can I make my match non greedy in vim?

I have a big HTML file that has lots of markup that looks like this: <p class="MsoNormal" style="margin: 0in 0in 0pt;"> <span style="font-size: small; font-family: Times New ...
101
votes
11answers
23k views

Renaming the current file in Vim

How should I go about renaming my current file in vim. For example: I am editing person.html_erb_spec.rb I would like it renamed to person.haml_spec.rb I would like to continue editing ...
101
votes
2answers
18k views

How do I list loaded plugins in Vim?

Does anybody know of a way to list up the "loaded plugins" in Vim? I know I should be keeping track of this kind of stuff myself but it would always be nice to be able to check the current status. ...
98
votes
9answers
32k views

How do I close a single buffer (out of many) in Vim?

I open several files in Vim by, for example, running vim a/*.php which opens 23 files. I then make my edit and run the following twice :q which closes all my buffers. How can you close only ...
98
votes
3answers
7k views

Can vim highlight matching HTML tags like Notepad++?

VIM has support for matching pairs of curly brackets, parentheses, and square brackets. This is great for editing C-style languages like PHP and Javascript. But what about matching HTML tags? ...
95
votes
7answers
62k views

Replace Tab with Spaces in VIM

I would like to convert tab to spaces in gvim. I added the following codes to my _vimrc: set tabstop=2 It works to stop at 2 spaces but it still looks like one tab key is inserted (I tried to use h ...
95
votes
8answers
17k views

In vim, how do I go back to where I was before a search?

Programming in vim I often go search for something, yank it, then go back to where I was, insert it, modify it. The problem is that after I search and find, I need to MANUALLY find my way back to ...
91
votes
7answers
18k views

Vim - paste in insert mode?

Is it possible to paste in insert mode in vim?
87
votes
8answers
46k views

Tips for using Vim as a Java IDE?

I'm addicted to Vim, it's now my de facto way of editing text files. Being that it's mainly a text editor and not an IDE, has anyone got tricks for me to make it easier when developing Java apps? ...
85
votes
5answers
13k views

How do I close all open tabs in VIM at once?

If I have 10 tabs opened, I have to close each one using ":q" separately. How can I close them all at once?
83
votes
3answers
27k views

Vimdiff: What are the most frequently used commands/shortcuts that could get a newbie started?

I've started using vimdiff today, and wanted to do some of the things that I've taken for granted on Windows based diff editors (like expand/collapse a diff section, have full file expansion/only ...
82
votes
11answers
70k views

VI editor: Copy all the lines to clipboard

Is there any way to copy all lines from open file to clipboard in VI editor. I tried yG but its not using clipboard to store those lines. So is it possible?

1 2 3 4 5 204