recherche

Maison  >  Questions et réponses  >  le corps du texte

vim vérifie en permanence les substitutions

:%s/souce/source/c

Comment faire en sorte qu'il vérifie constamment le remplacement

迷茫迷茫2751 Il y a quelques jours563

répondre à tous(2)je répondrai

  • 给我你的怀抱

    给我你的怀抱2017-05-16 16:37:50

     :%s/source/source/gc

    répondre
    0
  • 黄舟

    黄舟2017-05-16 16:37:50

    Copiez le code suivant dans votre .vimrc fichier

    " 不确认、非整词
    nnoremap <Leader>R :call Replace(0, 0, input('Replace '.expand('<cword>').' with: '))<CR>
    " 不确认、整词
    nnoremap <Leader>rw :call Replace(0, 1, input('Replace '.expand('<cword>').' with: '))<CR>
    " 确认、非整词
    nnoremap <Leader>rc :call Replace(1, 0, input('Replace '.expand('<cword>').' with: '))<CR>
    " 确认、整词
    nnoremap <Leader>rcw :call Replace(1, 1, input('Replace '.expand('<cword>').' with: '))<CR>
    nnoremap <Leader>rwc :call Replace(1, 1, input('Replace '.expand('<cword>').' with: '))<CR>

    Source : https://github.com/yangyangwi...

    répondre
    0
  • Annulerrépondre