cari

Rumah  >  Soal Jawab  >  teks badan

vim terus mengesahkan penggantian

:%s/souce/source/c

Cara membuatnya sentiasa mengesahkan penggantian

迷茫迷茫2742 hari yang lalu551

membalas semua(2)saya akan balas

  • 给我你的怀抱

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

    :%s/souce/source/gc

    balas
    0
  • 黄舟

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

    Salin kod berikut ke dalam fail .vimrc anda

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

    Sumber: https://github.com/yangyangwi...

    balas
    0
  • Batalbalas