Skip to content

Instantly share code, notes, and snippets.

@rampion
Created April 19, 2009 22:05
Show Gist options
  • Save rampion/98253 to your computer and use it in GitHub Desktop.
Save rampion/98253 to your computer and use it in GitHub Desktop.
vim script for refactoring using a dictionary
" Refactor the given lines using a dictionary
" replacing all occurences of each key in the dictionary with its value
function! Refactor(dict) range
execute a:firstline . ',' . a:lastline . 's/\C\<\%(' . join(keys(a:dict),'\|'). '\)\>/\='.string(a:dict).'[submatch(0)]/ge'
endfunction
command! -range -nargs=1 Refactor :<line1>,<line2>call Refactor(<args>)
" Example of use
" :%Refactor {'duck':'frog', 'frog':'rabbit', 'rabbit':'duck', 'I':'Noah'}
" changes
" I saw a duck, a frog, and a rabbit.
" to
" Noah saw a frog, a duck, and a duck.
"
" Note that the refactoring is not case independent, and only matches whole words.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment