Skip to content

Instantly share code, notes, and snippets.

@kmanalo
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmanalo/6ded920b681ec39041af to your computer and use it in GitHub Desktop.
Save kmanalo/6ded920b681ec39041af to your computer and use it in GitHub Desktop.
twiddlecase.vim
" https://github.com/tangledhelix/dotfiles/blob/master/vim/plugin/twiddlecase.vim
" Toggles between uppercase, lowercase, titlecase. Bind to a mapping, then
" select something and keep hitting the map until you get what you want.
function! TwiddleCase(str)
if a:str ==# toupper(a:str)
let result = tolower(a:str)
elseif a:str ==# tolower(a:str)
let result = substitute(a:str,'\(\<\w\+\>\)', '\u\1', 'g')
else
let result = toupper(a:str)
endif
return result
endfunction
" Example mapping
"vnoremap ~ ygv"=TwiddleCase(@")<CR>Pgv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment