Updated vimscript for clarity in reading

This commit is contained in:
Wryn Wagner 2021-04-09 15:13:58 -06:00
parent 705d13857a
commit 72c1f08b55

View File

@ -34,8 +34,8 @@ nnoremap <Leader>f z
nnoremap <Leader>j ddpkJ
" move the current line one below where it is
nnoremap - :m +1 <CR>
nnoremap _ :m -2 <CR>
nnoremap - :move +1 <CR>
nnoremap _ :move -2 <CR>
" \t for rerun last 'vimtest' command:
nnoremap <Leader>t q:?vimtest<CR><CR>