2
votes
2answers
52 views

VIM: Change cursor to underscore in normal mode

One nice feature of Sublime Text's Vintage Mode is that entering normal mode makes an underscore under the character you are one, rather than the standard cursor that highlights the current character ...
0
votes
2answers
34 views

how to insert the filename before inserting the file into another file in vim

Is there a way we can insert the filename before we insert the file content into another file i know how to insert a file into another -- :r But how to insert the filename which we are inserting ...
1
vote
4answers
162 views

Plugin name for showing indentation guide in gVim

Anybody, any idea?? which plugin is showing the indentation guide in the image below. Downloaded from http://leetless.de/images/vim/pyte.png .png Thanks
1
vote
2answers
63 views

How to make an horizontal ruler with vimscript?

i'm trying to do a command that fills up the current line with # , then goes to the begining and rewrites with the date and time, then o, this is my attempt: :nnoremap <F6><Home> set ...
2
votes
1answer
73 views

customizing tab tooltip in gvim to show buffer list

Currently running: VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Sep 1 2012 18:08:47) MacOS X (unix) version Included patches: 1-646 Compiled by Bjorn Winckler <bjorn.winckler@gmail.com> I ...
0
votes
1answer
72 views

what is the fontsize prefixed with h in gvim

I am using the gVim7.2 on Windows xp and I have set the gui font as Consolas 11. using the following code in my .vimrc :set guifont=Consolas:h11 and all I am curious as to Why is the size ...
1
vote
2answers
220 views

In GVIM or awk or sed, How do I paste a column of text from a different file after a different column of text in another file?

In GVIM How do I paste a column of text from a different file after a different column of text in another file? -regards
2
votes
2answers
262 views

In GVIM how can we search and highlight while keeping the previous search highlighted

In GVIM how can we search and highlight while keeping the previous search highlighted. Example As we search a new pattern the previous pattern gets un-highlighted. So is ter a way we can retain the ...
4
votes
1answer
268 views

Capturing break/interrupt command

I'm trying to interrupt a for loop such as in code below, for num in buffer_number_list " Select the buffer exe 'buffer' num " Run the command that's passed as an argument exe ...
0
votes
3answers
338 views

How can I map a key to execute a program, and show its output in GVim?

On my .gvimrc, I have the following line: map <f4> :!./%< On a source file, I have to press F4 and then enter, but it works correctly, shows the output, and hangs until I press enter ...