Last active
December 21, 2025 03:56
-
-
Save kmanalo/6ded920b681ec39041af to your computer and use it in GitHub Desktop.
twiddlecase.vim
This file contains hidden or 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
| " 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 |
Author
@alanoakes I read this earlier in the year and it was one of those I was intending to reply to you but I never did...
Take my reply back as a belated holiday gift and I sincerely with you the best in your endeavors!
I've been using a lot of vim, but I live in default land most of the time :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Hello @kmanalo ,
I use this simple vim script A LOT every day in my vimrc for the past four years. Thank you very much for putting it in github for others to use!!