"李 俊燕" <[EMAIL PROTECTED]> 写于 2006-10-20 14:17:55: > hi,all > > I don't know how to say that. > I just remember that I can type [ control - a ] before a number > to let it add 1, for example let 1 change to 2. > But it doesn't work in gvim 7.0 for windows. > Is there any other method to do that? > > thank you very much. > Li
If you had sourced the vimrc_example.vim, the mswin.vim might be sourced, then the Ctrl-A will be mapped to something else. So, you have to choices: 1. remove the reference to the mswin.vim, you can search and find which script call the mswin.vim and remove it. or just: 2. unmap all the remappings to <Ctrl-A> Add the following to the end of your .vimrc: " CTRL-A is the default unmap <C-A> unmap! <C-A> -- Sincerely, Pan, Shi Zhu. ext: 2606
