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)

-1
votes
2answers
17 views

How can i add four blanks in the head of everyline in vim?

Here is my file to edit in vim ,how can i add four blanks in the head of everyline? i can do it just as save mypython.py and use sed 's/^/ /' /mypython.py how can i do it in the vim?
0
votes
1answer
12 views

Why i get different result in vim between `"+p` and `paste`?

I want to paste something from web into vim . 1.select the content which i want to paste. please attachment 2.the sentence2 which i paste with method clipboard 3.compare the sentence2 which ...
1
vote
3answers
25 views

Adding erb wrap to surround.vim

I am attempting to edit my surround.vim file, to map a quick key for adding erb tags. Here is the stackoverflow post I am referring to: VIM: insert empty ERB tags. I am using this VIM Package ...
0
votes
3answers
65 views

in vim shift+w (W) does not work. It moves forward like w. How do I fix it?

I am using vim 7.3, installed through homebrew on OS X 10.8.3. For some reason neither W or E works as expected in normal mode. Rather than moving backward one word at a time, it moves forward. The ...
1
vote
2answers
59 views

How to comment/uncomment Python code in Vim

I wish to have a single command to toggle commenting in a line / block of python code. I am using the following code in my .vimrc file: " (un-)commenting " comment line, selection with Ctrl-N,Ctrl-N ...
3
votes
1answer
36 views

Internal vim command output to external application

Say that I run :set all inside vim in command mode, this command outputs a lot of stuff as expected, how i can redirect this output to an external application capable of reading an incoming buffer, ...
1
vote
1answer
25 views

Mapping Alt+umlaut in .vimrc using xterm doesn't work

The following mapping doesn't work: noremap <A-ö> :do something I use xterm (on Ubuntu) and mappings like <A-j> work. Mapping ö alone is possible but again, <C-ö> doesn't work. ...
1
vote
1answer
37 views

Jump to last line, but stay in the same column

In Vim, it is possible to jump to the last line with G (or the first line with gg), but that movement also jumps to the first non-space character. Is there a keybinding to jump to the first line (or ...
4
votes
3answers
66 views

Get vim to display number of commas in one line

I have a long line with many commas. I would like to know the number of commas in a line. How can i do this using vim? Also, I want to do this for characters other than comma. Specifying the line ...
1
vote
3answers
22 views

MacVim, how can i read the content of `version` into the edit area?

i know that i can check the vim version by :version in normal mode but what the command give me is a read-only text, i can not search anything and that's a lot of text so how can I read from the ...
-3
votes
0answers
28 views

How to change the syntax highlighting of vim for c++? [closed]

It seems that the syntax highlighting for c++ doesn't support some keywords such as "vector","string","map" and so on, How to make my vim support such keywords?
0
votes
3answers
110 views

How to become more productive in git

I am starting git and I am looking into being more productive. My experience was in Clearcase (mainly Windows version). I am looking for good patterns to increase productivity. To give an example I ...
0
votes
1answer
28 views

Open item from quickfix window in vertical split?

I know you can open quickfix items in a new horizontal window with ctrl-w + enter. Is there a way to open an item from the quickfix window in a vertical split?
3
votes
1answer
32 views

Replace matched pattern with array list

I have a HTML code like this. <tr> <td>$value</td> <td>$value</td> <td>$value</td> </tr> I want to changes all $value with a value from an ...
2
votes
0answers
29 views

vim-ruby-debugger style breakpoints with Pry in Vim

Right now, when I want a breakpoint in vim or Sublime Text, I drop a line like the following into the code: binding.pry if Rails.env.test? Pry (and its associated plugins) provide a nice ...
1
vote
2answers
21 views

Copy from Putty/Vim visual mode to windows clipboard

I currently have a vim session open in Putty, and I've selected everything in the file via visual mode. Normally to copy this onto clipboard I would use either "+y or "*y, but neither of those ...
0
votes
1answer
22 views

Regex in vim for Makefile target

I want to replace all the targets in a Makefile with something else using vim. I'm sure this is possible with regex but I haven't figured out the syntax. For example if I have foo.o: $(src)/foo.c ...
0
votes
5answers
41 views

What is a way to read man pages in vim without using temporary files

I want to be able to read man pages in vim. For some reason, it seems that vim isn't able to read the output of programs through piping (i.e '(man ls) | vi' doesn't seem to work, bonus points to ...
0
votes
0answers
18 views

How to avoid prompt when opening gVim as external tool from Visual Studio?

I am trying to set up gVim 7.3 as an external tool to edit text from Visual Studio 2010. Here is my argument list: --servername VimStudio --remote-silent +"runtime visualstudioinvoke.vim" +"call ...
1
vote
1answer
33 views

Redirect ex command to STDOUT in vim

I'm trying to craft a command to dump vim's highlighting information to STDOUT. I can write successfully to a file like this: vim +'redir >outfile' +'hi' +'redir END' +'q' After this, outfile ...
2
votes
2answers
41 views

vim remove highlight (not search highlight)

This is a screen of vim editing .bash_profile. It seem to have used some weird highlighting that I didn't explicitly turn on (e.g. around GaF) using nohl doesn't help since I didn't initiate a ...
0
votes
1answer
31 views

Improve TwiddleCase function to work in visual block mode

The following snippet can be found on the vim wiki: function! TwiddleCase(str) if a:str ==# toupper(a:str) let result = tolower(a:str) elseif a:str ==# tolower(a:str) let result = ...
2
votes
2answers
51 views

Add a line to the git commit message while I'm editing code

While editing code in VIM I would like to add small one-line notes to the Git Commit message. Sometimes I find it simpler to to fix a small issue right when I see it rather than to comment it or ...
0
votes
1answer
21 views

How can I find unused symbols using cscope?

I am doing a little code refactoring. Usually, after I rewrite/reimplement everything, I do a clean-up first. This means, I remove unused libraries, unused functions etc. My question is: How can I ...
0
votes
1answer
33 views

Implementing more complex color scheme code for vim

Currently I use a relatively simple snippet of code to dynamically change the buffer color scheme code in vim - detailed here on SO This proposed solution looks a lot more comprehensive - I'm just ...
0
votes
2answers
25 views

How to modify the last-position-jump vimscript to not do it for git commit messages

Here's the script for convenience: " Uncomment the following to have Vim jump to the last position when " reopening a file if has("autocmd") ...
-2
votes
0answers
34 views

How to change vim Fugitive colors?

The default colors when using :Gdiff are garish and nearly unreadable in railscasts colorscheme. Is there a way to change the default colors?
1
vote
2answers
106 views

How to open `find` output with vim?

I've written a function that will find a function or class definition among Python files. It generates an argument list to be used with vim. It works for the first argument / file, but fails for ...
1
vote
0answers
48 views

Ruby can't even require standard libraries from within vim

In irb and when using ruby everything works. require 'pathname' ==> True. In a vimscript file this fails however ruby << EOF print 5 require 'pathname' print 6 fails however with ...
0
votes
0answers
30 views

Vim: Stop inserting hotkey combinations after meta/leader key

On MacVim I have a rather annoying occurrence that I don't have any solutions for yet. While in insert mode, if I type , (my leader key), then hit CMD-S in an attempt to save it ends up inserting ...
5
votes
2answers
102 views

A more powerful version of dot (repeat)

I know about recording with q into registers, but I was wondering if it's possible to set something up to quickly recall the last recording, in much the same way that . recalls the last short editing ...
1
vote
3answers
38 views

What's the command for going to next jump spot (<Tab> or <C-I> functionality)?

I am using Tab to toggle window focus via nnoremap <Tab> :wincmd w<CR>. This means I can no longer use <Tab> to move forward in the jump list. (Often used in conjunction with ...
2
votes
5answers
91 views

Delete a block of text in Vim

So I can delete a text+line using dd (normal mode) and all the below text moves up a line. I can go into visual mode using Ctrl+v If I then say do 0 > C+v > jjj > $ > d the text of 4 rows is deleted ...
0
votes
2answers
32 views

Vim sometimes prints :.,.+1e to command line instead of :e [closed]

I'm not sure what exactly I'm pressing to get this, but sometimes when I make a certain mistake typing :e then :.,.+1e appears in the command line instead. What is it, is this notation useful anywhere ...
1
vote
3answers
52 views

Delete text outside of tags

Using vim, I am attempting to remove all text outside of <text> blocks. This needs to span across newlines and other (unrelated) tags. I have attempted to use regex to substitute text for ...
0
votes
0answers
24 views

Vim Syntastic Java Unaware of Current Project Classes

Using Vim Syntastic with an android project. (e.g. com.myproject.project) It's not aware of classes declared within my project but outside of the current file. e.g. the following flags errors: import ...
0
votes
0answers
37 views

Why arrow keys are not recommended in Vim [migrated]

"Never use arrow keys in Vim!" I heard this from a random speaker, but didn't have the chance to ask him why. Also, if you don't use the arrow keys, how can you move the cursor in the Insert ...
2
votes
0answers
23 views

Multiline errorformat in vim

I'm trying to match on C error messages like this: gmake[1]: Entering directory `/project/swbuild45/ethanl/swfeature_int/pkt' ... sw/se/xc/bsd/routing/rib/src/rib_bfd_thrd.c: In function ...
0
votes
1answer
38 views

vim-fireplace Connect command won't run

I've installed vim-fireplace, but the Connect command doesn't work. The error message is "Not an editor command: Connect". This leads me to believe I've messed up the installation but I can't figure ...
-4
votes
1answer
47 views

Executing buffer content with Python to split window without freezing for long execution times

Now I have map <F5> :w<CR>:!python %<CR> and if my script is doing long term work, vim freezes. I want to direct output of script to the split window. Like tail -f but in vim. Are ...
4
votes
6answers
74 views

to fix the color in vim or to take the plunge?

I'm disappointed because of the vim behaviour under Ubuntu 13.04 and the issues I'm having the color reproduction. I have problems when setting a colorscheme and I also tried to fix this issue with ...
1
vote
3answers
20 views

vim-latex suite, how to open a file without folding the text by default

I have downloaded and successfully installed the vim-latex suite from http://vim-latex.sourceforge.net/index.php It is a great tool, but slightly annoying that when you open a file it folds all of ...
1
vote
1answer
39 views

Why does 3dd not work from the last line in vim?

If I do 3dd with the cursor at the next-to-last line in a file, two lines are deleted, as expected. If I do the same with the cursor at the last line, I'd expect one line to get deleted, but that does ...
2
votes
1answer
26 views

How to map cmd+s to save all?

I'm developing some front-end project with the help of Yeoman. I run the developing webserver by grunt serverand, because there is livereload.js in the project, for watching files change and ...
1
vote
0answers
41 views

Vim-fugitive not matching Git command line

I installed vim-fugitive using pathogen. If I do git status in a terminal window, I get the correct branch and status. If in Vim, I do :Git status, I see the same that was in the terminal window (no ...
0
votes
0answers
12 views

Can vim/dbext use integrated security rather than a sql-login to access db

Currently I can access our db using vim with the standard dbext plugin. I'm using the details of one of our a sql-server-logins to achieve this: ...
0
votes
0answers
22 views

vim autocomplete: disable the need to accept autocompletion choice

Is there a way to set vim autocompletion (called by using standard ctrl-p hotkey) so that I don't have to press enter to accept the choice? I know that YouCompleteMe plugin does that kind of thing, ...
0
votes
2answers
26 views

For vim, how to get the what autocmd events are occurring when some action is taking

I checked the vim help for autocmd-event, but cannot identify which events are mapping those specific actions, such as c(change), or multi-replace in command mode for example (:1,$s/abc/ABC/g), and ...
2
votes
1answer
30 views

When custom mapping is set for :cn, :cp vim doesn't expand the fold that contains an error

I have noticed that when I use :cn :cp directly, vim always expands folds for me. But when I set my custom mapping to call :cn like :map <leader>n :cn<cr>, vim doesn't expand foldings when ...
0
votes
0answers
36 views

vim 7.3 on debian 7 (wheezy): copy to clipboard wont work [closed]

I have installed debian 7 (wheezy) on my dedicated server. In my vim I copied text all times to clippboard over command: :%y+ or gg"+yG . But now it wont work anymore. I tried install vim-gtk, ...

1 2 3 4 5 205