more mappings for the god of mappings

This commit is contained in:
2019-12-03 08:43:38 -08:00
parent d0d67a215c
commit 29f64c36de

View File

@@ -219,6 +219,9 @@ vnoremap <c-v> x"+P
nnoremap <leader>t :term<cr> nnoremap <leader>t :term<cr>
nnoremap <leader>sw /\<\><Left><Left> nnoremap <leader>sw /\<\><Left><Left>
nnoremap <leader>rw :%s/\<\><Left><Left> nnoremap <leader>rw :%s/\<\><Left><Left>
vnoremap <leader>rw :s/\<\><Left><Left>
nnoremap <leader>ln :lnext<cr>
nnoremap <leader>lp :lprev<cr>
" }}} " }}}
" Mappings for Plugins " Mappings for Plugins
@@ -245,3 +248,8 @@ cabbrev w!! w !sudo tee > /dev/null %<cr>
cabbrev ddf %:p:h cabbrev ddf %:p:h
cabbrev Pydoc term ++close python -m pydoc cabbrev Pydoc term ++close python -m pydoc
" }}} " }}}
" Commands
" {{{
command! -nargs=* Pydebug tab term ++close pudb3 % <args>
" }}}