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)

60
votes
12answers
21k views

Text editor for scala [closed]

I'm tired of using IDEs for scala because it can take several minutes to write one line of code on my computer (before I started programming in scala I didn't surmise that it is slow). It's a great ...
60
votes
18answers
14k views

Differences between Emacs and Vim

Without getting into a religious argument about why one is better than the other, what are the practical differences between Emacs and Vim? I'm looking to learn one or the other, but I don't see a ...
57
votes
6answers
18k views

Auto format c file in vim

I may copy some code from other file, the format is mess, like fun() { for(...) { for(...) { if(...) { } } } } Is there any possible way to auto format it in the vim? Best Regards,
47
votes
3answers
8k views

Yank file name / path of current buffer in Vim

Assuming the current buffer is a file open for edit, so :e does not display E32: No file name. I would like to yank one or all of: The file name exactly as show on the status line, e.g. ...
28
votes
7answers
6k views

Vim Dvorak keybindings (rebindings :)

Although I played with it before, I'm finally starting to use Dvorak (Simplified) regularly. I've been in a steady relationship with Vim for several years now, and I'm trying to figure out the best ...
36
votes
4answers
7k views

Can you grab or delete between parentheses in vi/vim?

Given this line of code in C: printf("%3.0f\t%6.1f\n", fahr, ((5.0/9.0) * (fahr-32))); Is there a way to delete or yank from the first bold parenthesis to its matching parenthesis? I thought ...
35
votes
6answers
19k views

How can I prepend text to multiple lines in Vim?

Say I have ten lines and I want to prepend text to some word that occurs in those lines? It does not have to be at the beginning of the line. sdfsd foo sdfsd sfsd foo fsdf sdfsdf foo sdfsdf ...
40
votes
7answers
12k views

How do I fix incorrect inline Javascript indentation in Vim?

I can't seem to get inline Javascript indenting properly in Vim. Consider the following: $(document).ready(function() { // Closing brace correctly indented $("input").focus(function() { ...
48
votes
11answers
4k views

Any way to delete in vim without overwriting your last yank?

I love vim, but one common gotcha is: yank a line go to where you would like to paste it delete what's there paste your yank, only to discover that it pastes what you just deleted Obviously the ...
26
votes
6answers
15k views

Vim PHP omni completion

I'm trying to get PHP autocompletion right in Vim. Right now when I do a $blog = new Blog(); $blog-> and then hit CTRL+X CTRL+O I'd expect omnicompletion to return all the functions in the class ...
38
votes
5answers
6k views

Search and replace in Vim across all the project files

I'm looking for the best way to do search-and-replace (with confirmation) across all project files in Vim. By "project files" I mean files in the current directory, some of which do not have to be ...
48
votes
3answers
15k views

Howto get full path of current file in Vim?

When I go to command mode and type :!mycommand % I get my command executed on the current file (% is expanded to the current file name). Is there a similar construct that expands the full file ...
17
votes
1answer
4k views

How do I enable automatic folds in Vim?

How do I enable automatic folding in Vim? set foldmethod=syntax doesn't seem to do much of anything.
26
votes
5answers
3k views

Vim: Creating parent directories on save

If I invoke vim foo/bar/somefile but foo/bar don't already exist, Vim refuses to save. I know I could switch to a shell or do :!mkdir foo/bar from Vim but I'm lazy :) Is there a way to make Vim do ...
17
votes
6answers
3k views

How to configure vim to not put comments at the beginning of lines while editing python files

When I add a # in insert mode on an empty line in Vim while editing python files, vim moves the # to the beginning of the line, but I would like the # to be inserted at the tab level where I entered ...
40
votes
5answers
3k views

Vim automatically removes indentation on Python comments

I'm using Vim and editing Python scripts. Autoindent works pretty well in general, but when I start a new line and type '#' to type a comment, Vim unindents that line for me. For example, if have ...
39
votes
15answers
14k views

What are the efficiencies afforded by Emacs or Vim vs Eclipse? [closed]

I started coding around 5 years ago. I was introduced through Java and Eclipse which both have substantial stigma attached in the programming community. A number of people at the company I currently ...
29
votes
3answers
4k views

.gitignore files added inside Git submodules

I recently reorganized my dotfiles to live inside a Git repository at ~/Dropbox/dotfiles and I'm using pathogen to bundle all Vim addons inside ~/Dropbox/dotfiles/home/.vim/bundle. These addons were ...
9
votes
3answers
2k views

Search & replace using quickfix list in Vim

So far I always used EasyGrep for replacing text in multiple files. Unfortunately it is quite slow when a project gets bigger. One thing that seems to be amazingly fast is Ggrep of fugitive.vim that ...
26
votes
3answers
4k views

Multiple selections in VIM

Is it possible to select multiple non-consecutive lines (or sections) in VIM's visual mode? If so, how?
24
votes
7answers
7k views

In Vim, what is the simplest way to join all lines in a file into a single line?

I want to join all lines in a file into a single line. What is the simplest way of doing this? I've had poor luck trying to use substitution (\r\n or \n doesn't seem to get picked up correctly in ...
23
votes
4answers
12k views

What does ^M character mean in Vim

I keep getting ^M character in my vimrc and it breaks my configuration.
18
votes
4answers
1k views

(Vim)diff two subroutines in same file

Is it possible to diff or even vimdiff two almost similar subroutines which occur in the same file? If so, how? I can think of copying the two subroutines in two separate files and then diff them, ...
10
votes
6answers
6k views

How to update Vim to color-code new html elements

I am wondering how I might set vim to color the new html5 elements (ie "canvas" and "video") as it does with the existing "script", "body" elements (or reserved words in other languages like python's ...
36
votes
9answers
8k views

Best way to insert timestamp in Vim?

EditPad Lite has a nice feature (CTRL-E, CTRL-I) which inserts a time stamp e.g. "2008-09-11 10:34:53" into your code. What is the best way to get this functionality in Vim? (I am using Vim 6.1 on a ...
23
votes
15answers
86k views

Using regular expressions to do mass replace in Notepad++ and Vim

So I've got a big text file which looks like the following: <option value value='1' >A <option value value='2' >B <option value value='3' >C <option value value='4' >D It's ...
20
votes
16answers
6k views

Does any IDE have a vi keybindings options? [closed]

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 ...
10
votes
7answers
938 views

Using vi, how can I make CSS rules into one liners?

Example bad: #main { padding:0; margin: 10px auto; } Example good: #main {padding:0;margin:10px auto;} I have a ton of CSS rules that are taking up too many lines. And I cannot ...
10
votes
3answers
3k views

ViM: How to redirect ex command output into current buffer or file?

How can I redirect or pipe the output of an ex command into my current buffer or a file? For example, I want to read the contents of all the registers into the current buffer, which in ex mode is ...
31
votes
5answers
8k views

Aliasing a command in vim

Vim is my preferred text editor when I program, and thus I always run into a particularly annoying issue. Frequently, when I quickly need to save the buffer and continue on to some other ...
26
votes
3answers
41k views

Specifying the VIM background colour

When I am trying to change background in vimrc or directly in vim using set background=dark it doesn't affect my background at all, same with light option, however it looks okay when I run gvim. ...
23
votes
8answers
6k views

Writing a vim function to insert a block of static text

I'd like to be able to do something like this in vim (you can assume v7+ if it helps). Type in a command like this (or something close) :inshtml and have vim dump the following into the current ...
16
votes
2answers
2k views

How do I make vim indent java annotations correctly?

When indenting java code with annotations, vim insists on indenting like this: @Test public void ... I want the annotation to be in the same column as the method definition but I can't seem to ...
13
votes
11answers
5k views

Fast word count function in Vim

I am trying to display a live word count in the vim statusline. I do this by setting my status line in my .vimrc and inserting a function into it. The idea of this function is to return the number of ...
25
votes
4answers
4k views

Indenting comments to match code in vim

I do all my coding in vim and am quite happy with it (so, please, no "use a different editor" responses), but have an ongoing annoyance in that the smartindent feature wants to not indent comments ...
16
votes
3answers
3k views

Can vim use the system clipboard(s) by default?

I am running into several problems because vim's tabs are, for the lack of a better term, god awful. I want to start using multiple Gnome tabs instead, each with a different instance of vim. ...
14
votes
5answers
7k views

How to Debug Java Application using VIM/GVIM?

I asked this question previously (any-good-tutorial-for-moving-from-eclipse-to-vim) From the inputs, I started using GVIM instead of Eclipse. I added ctags to it and I am able to navigate now ...
11
votes
2answers
4k views

Suppress Ruby warnings when running specs

I'm looking for a way to suppress Ruby warnings when I run my specs. spec spec/models/account_spec.rb I receive warnings such as: DEPRECATION WARNING: ActiveSupport::Dependencies.load_paths is ...
10
votes
1answer
1k views

How can I configure vim so that movement commands will include underscores and CamelCase, but completion will ignore them?

For example, I currently have this: set iskeyword-=_ This has the effect of making this work: foo_bar If cursor is on "f", pressing w moves cursor to the underscore. Pressing again moves to the ...
31
votes
4answers
4k views

In Vim: How do I delete a word and go into insert mode?

In normal mode, I can hit "ce", which deletes the rest of the current word and goes to insert mode. I want to delete the entire word, regardless of the cursor position (within the word of course) ...
16
votes
3answers
2k views

How to insert spaces up to column X to line up things in columns?

I have my source code for copy operators written as follows. foo = rhs.foo; foobar = rhs.foobar; bar = rhs.bar; toto = rhs.toto; I'd like to line things up as follows (more human readable, isn't ...
10
votes
4answers
3k views

Remove everything except regex match in Vim

My specific case is a text document that contains lots of text and IPv4 addresses. I want to remove everything except for the IP addresses. I can use :vglobal to search for ...
20
votes
6answers
15k views

Unable to change the default editor in terminal

My default editor is pico at my server. I use Bash and Linux. I tried to change Vim to be my default editor unsuccessfully by echo vim > $EDITOR How can I change Vim my default editor? [edit] ...
14
votes
1answer
1k views

VIM: store output of external command into a register

Is it possible to run an external command and store its output in a register? :redir works for ex commands, not for external commands (afaik) :r ! runs the external command but directly inserts ...
13
votes
8answers
6k views

how to open a file in a list of files in vim?

I have a longish list of files opened in vim that looks like this: /dir1/file1 /dir2/file2 /dir2/file3 ..... How can I open all of them one by one the easiest way possible in the same session of ...
12
votes
2answers
4k views

Mapping <C-Tab> in my vimrc fails in Ubuntu

I want to map ctrl-tab to :tabn, and ctrl-shift-tab to :tabp. I had it working for gVim in Windows XP, but moved it to my .vimrc in Ubuntu 9.10 and it doesn't work (vim 7.2). Here's the relevant ...
11
votes
2answers
3k views

How to setup vim properly for editing in utf-8

I've run into problems a few times because vim's encoding was set to latin1 by default and I didn't notice and assumed it was using utf-8. Now that I have, I'd like to set up vim so that it will do ...
9
votes
5answers
2k views

Better window navigation in Emacs?

When I split window in emacs several times (under terminal) the whole screen is divided into several parts with hierarchical arrangement. In vim it is easy to switch between windows intuitively with ...
7
votes
5answers
1k views

In Vim how do I effectively insert the same characters across multiple lines?

Sometimes I want to edit a certain visual block of text across multiple lines. For example I would take a text that looks like this: name comment phone email And make it looke like this ...
32
votes
7answers
8k views

How do I insert a linebreak where the cursor is without entering into insert mode in Vim?

Is possible to insert a linebreak where the cursor is in Vim without entering into insert mode? Here's an example ([x] means cursor is on x): if (some_condition) {[ ]return; } Occasionally, I might ...

1 2 3 4 5 25