Quando o gvim inicia, ele cria um arquivo chamado mswin.vim
através do arquivo _vimrc
. No arquivo mswin.vim
, as chaves são remapeadas. Você pode desfazer isso de duas maneiras. Uma é editar o arquivo mswin.vim
e remover o mapeamento (não recomendado). Uma segunda forma potencialmente menos invasiva é editar o arquivo _vimrc
.
1. Start gvim as Administrator.
2. Click Edit->Startup Settings (This will load the _vimrc file)
3. The beginning of the file will look something like this.
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
4. Delete the line that sources mswin.vim and sets mswin behavior and change set nocompatible to set compa'enter code here'tible. The end result will look something like this.
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
Isso deve resolver seu problema.
Se você quiser que ele se comporte mais como vi que vim, você pode alterar nocompatible
para compatible