add ,j vim key to re-indent following line

This commit is contained in:
Josh Holtrop 2011-04-27 15:20:54 -04:00
parent f9c9c14b14
commit 7e838ba8cd

4
vimrc
View File

@ -85,7 +85,9 @@ map ,f :set ts=8 :retab :set ts=4
map ,C ggVGc
" jump to tag in a new tab
"map  :tab :tag 
nnoremap <silent> <F8> :TlistToggle<CR>
"nnoremap <silent> <F8> :TlistToggle<CR>
" re-indent the following line how vim would automatically do it
map ,j Ji 
" highlight characters past column 80
map ,L :highlight TooLong guibg=lightyellow :match TooLong '\%>80v.*.$'