suchen

Heim  >  Fragen und Antworten  >  Hauptteil

vim überprüft kontinuierlich Ersetzungen

:%s/souce/source/c

So stellen Sie sicher, dass der Austausch ständig überprüft wird

迷茫迷茫2778 Tage vor589

Antworte allen(2)Ich werde antworten

  • 给我你的怀抱

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

    :%s/souce/source/gc

    Antwort
    0
  • 黄舟

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

    把以下代码复制到你的 .vimrc 文件

    " 不确认、非整词
    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>

    来源:https://github.com/yangyangwi...

    Antwort
    0
  • StornierenAntwort