Add mappings for jumping to next/prev unindented line

This commit is contained in:
Alexander Gehrke 2022-09-07 14:18:18 +02:00
parent 81ffdf1860
commit da890ba047

View file

@ -146,6 +146,9 @@ nnoremap <A-j> <C-w>j
nnoremap <A-k> <C-w>k nnoremap <A-k> <C-w>k
nnoremap <A-l> <C-w>l nnoremap <A-l> <C-w>l
nnoremap <M-[> :call search('^[^[:space:])\]}]', 'be')<cr>
nnoremap <M-]> :call search('^[^[:space:])\]}]', 'e')<cr>
inoremap <C-U> <C-G>u<C-U> inoremap <C-U> <C-G>u<C-U>
nnoremap & :&&<CR> nnoremap & :&&<CR>
xnoremap & :&&<CR> xnoremap & :&&<CR>