首頁  >  問答  >  主體

vim 不斷驗證替換

:%s/souce/source/c

如何使其不斷驗證替換

迷茫迷茫2734 天前548

全部回覆(2)我來回復

  • 给我你的怀抱

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

    :%s/souce/source/gc

    回覆
    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...

    回覆
    0
  • 取消回覆