Ver Fonte

title case line doesn't need visual mode

Daniel Sheffield há 2 semanas atrás
pai
commit
3aa0886e8f
1 ficheiros alterados com 5 adições e 1 exclusões
  1. 5 1
      vim/vimfiles/vimrc

+ 5 - 1
vim/vimfiles/vimrc

@@ -76,10 +76,14 @@ scriptencoding utf-8
 
 " Title Case
 vnoremap gt :s/\%V\v<(.)(\w*)/\u\1\L\2/g<CR>:noh<CR>
-vnoremap gT :s/\v<(.)(\w*)/\u\1\L\2/g<CR>:noh<CR>
+nnoremap gT V:s/\v<(.)(\w*)/\u\1\L\2/g<CR>:noh<CR>
+
+" Quote selection
 vnoremap gi" c"<C-r>""<Esc>
 vnoremap gi' c'<C-r>"'<Esc>
 vnoremap gi` c`<C-r>"`<Esc>
+
+" Bracket selection
 vnoremap gi( c(<C-r>")<Esc>
 vnoremap gi) c(<C-r>")<Esc>
 vnoremap gi[ c[<C-r>"]<Esc>