Merge pull request 'better splitting and joining vim' (#3) from cscherrNT/configs:master into master

Reviewed-on: #3
This commit is contained in:
Christoph J. Scherr 2023-07-07 18:44:20 +02:00
commit 24c0fa0a62
1 changed files with 7 additions and 0 deletions

View File

@ -103,6 +103,13 @@ map <Leader>% :split<CR>
" join with <leader>j
nnoremap <leader>j :join<CR>
" join up with <leader>J
nnoremap <leader>J :move .-2<CR> :join<CR>
" split lines with <leader>s
nnoremap <leader>s i<CR><ESC>
" split lines up with <leader>S
nnoremap <leader>S i<CR><ESC> V:m -2<CR>
" move screen a line up/down with alt U/D
nmap <A-u> kzz