Skip to content

Instantly share code, notes, and snippets.

@nelstrom
Created July 14, 2015 16:29
Show Gist options
  • Save nelstrom/aa8c70a0fc479e6ba795 to your computer and use it in GitHub Desktop.
Save nelstrom/aa8c70a0fc479e6ba795 to your computer and use it in GitHub Desktop.
function! ChangeUrls()
args `cat .chapters`
silent vimgrep /\Vhttp:\/\/\zsvimdoc.sourceforge.net\/htmldoc/g ##
for hit in reverse(getqflist())
execute 'buffer' hit.bufnr
silent call cursor(hit.lnum, hit.col)
silent call MoveUrl()
endfor
endfunction
function! MoveUrl()
normal! ct/vimhelp.appspot.com
normal! f/dt/
normal! f.i.txt
normal! f#lvt"
normal [u
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment