vote up 0 vote down star
1

While CTRL-X works fine in vim under windows, CTRL-A selects all (duh). Is there a way to increment a number with a keystroke under windows?

flag

80% accept rate

2 Answers

vote up 0 vote down check

Try Ctrl-NumPad + ?

(from here)

link|flag
1  
thanks. just to complete the answer, one need to also: :noremap <C-kPlus> <C-A> – Paul Oyster Sep 16 '08 at 8:33
vote up 0 vote down

You can make the Ctrl-A increment in windows by opening up the 'mswin.vim' file in your vim directory and finding the section that looks like:

" CTRL-A is Select all
noremap <C-A> gggH<C-O>G
inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
cnoremap <C-A> <C-C>gggH<C-O>G
onoremap <C-A> <C-C>gggH<C-O>G
snoremap <C-A> <C-C>gggH<C-O>G
xnoremap <C-A> <C-C>ggVG

Comment out all of these lines as follows:

" CTRL-A is Select all
"noremap <C-A> gggH<C-O>G
"inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
"cnoremap <C-A> <C-C>gggH<C-O>G
"onoremap <C-A> <C-C>gggH<C-O>G
"snoremap <C-A> <C-C>gggH<C-O>G
"xnoremap <C-A> <C-C>ggVG

and the Ctrl-A keystroke will increment.

This is a pretty nice option when your keyboard doesn't have a real number pad.

link|flag

Your Answer

Get an OpenID
or

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