Como posso mapear permanentemente o comando vim: W to: w?

3

Às vezes, no vim, estou mantendo o turno quando salvo e acabo fazendo :W . Como posso definir meu vimrc para reconhecer :W as :w ?

    
por kilojoules 02.04.2016 / 10:16

2 respostas

1

Eu também tenho um dedo de deslocamento "preguiçoso", então tenho vários aliases de comando:

" "Aliases" for commonly used commands+lazy shift finger:
command! -bar -nargs=* -complete=file -range=% -bang W         <line1>,<line2>write<bang> <args>
command! -bar -nargs=* -complete=file -range=% -bang Write     <line1>,<line2>write<bang> <args>
command! -bar -nargs=* -complete=file -range=% -bang Wq        <line1>,<line2>wq<bang> <args>
command! -bar                                  -bang Wqall     wqa<bang>
command! -bar -nargs=* -complete=file -range=% -bang We        <line1>,<line2>w<bang> | e <args>
command! -bar -nargs=* -complete=file -count   -bang Wnext     <count>wnext<bang> <args>
command! -bar -nargs=* -complete=file -count   -bang Wprevious <count>wprevious<bang> <args>
command! -bar -nargs=* -complete=file          -bang E         edit<bang> <args>
command! -bar -nargs=* -complete=file          -bang Edit      edit<bang> <args>
command! -bar                                  -bang Q         quit<bang>
command! -bar                                  -bang Quit      quit<bang>
command! -bar                                  -bang Qall      qall<bang>
command! -bar -nargs=? -complete=option              Set       set <args>
command! -bar -nargs=? -complete=help                Help      help <args>
command! -bar -nargs=* -complete=file          -bang Make      make<bang> <args>
command! -bar -nargs=* -complete=buffer        -bang Bdel      bdel<bang> <args>
command! -bar -nargs=* -complete=buffer        -bang Bwipe     bwipe<bang> <args>
command! -bar -nargs=* -complete=file          -bang Mksession mksession<bang> <args>
command! -bar -nargs=* -complete=dir           -bang Cd        cd<bang> <args>
command! -bar                                        Messages  messages
command! -bar -nargs=+ -complete=file          -bang Source    source<bang> <args>

O motivo pelo qual tenho vários comandos duplicados, como W e Write , é porque tenho comandos definidos pelo usuário suficientes para que o Vim possa reclamar sobre o uso ambíguo de comandos do usuário, se não o fizer. (Veja: :help user-cmd-ambiguous )

    
por 02.04.2016 / 23:24
4

Você não deseja mapear uma chave, mas criar um comando que se comporte da mesma maneira que w (rite). Basta escrever isso em $ HOME / .vimrc:

command W write
    
por 02.04.2016 / 11:32

Tags