Added hotkey to vim to convert some HTML to MD

This commit is contained in:
Josh Sherman 2014-03-12 15:56:59 -04:00
parent 3887fc5740
commit e71a7cc2b9
2 changed files with 2 additions and 0 deletions

View file

@ -124,6 +124,7 @@ nnoremap <Leader>b :BundleUpdate<CR>:q<CR>
nnoremap <Leader>c :!wc %<CR>
nnoremap <Leader>f :set nolist<CR>
nnoremap <Leader>F :set list<CR>
nnoremap <Leader>m :%s/<code>/`/g<CR>:%s/<\/code>/`/g<CR>:%s/<h2>/## /g<CR>:%s/<\/h2>//g<CR>:%s/<\/pre>/```/g<CR>
nnoremap <Leader>n :NERDTree<CR>
nnoremap <Leader>q :qa<CR>
nnoremap <Leader>r :silent !~/Source/dotfiles/scripts/refresh-safari<CR>:redraw!<CR>