Created
July 14, 2015 16:29
-
-
Save nelstrom/aa8c70a0fc479e6ba795 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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