vim:keys: Disable indentation jump maps for now

As they clash and are overwritten by the split navigation maps just
below.
This commit is contained in:
2021-07-16 00:53:16 +02:00
parent b7fb36061b
commit b89c170192

View File

@@ -4,8 +4,8 @@ nnoremap <silent> <CR> :nohlsearch<CR><CR>
" Indentation jump " Indentation jump
" https://vim.fandom.com/wiki/Move_to_next/previous_line_with_same_indentation " https://vim.fandom.com/wiki/Move_to_next/previous_line_with_same_indentation
noremap <silent> <C-k> :call search('^'. matchstr(getline('.'), '\(^\s*\)') .'\%<' . line('.') . 'l\S', 'be')<CR> " noremap <silent> <C-k> :call search('^'. matchstr(getline('.'), '\(^\s*\)') .'\%<' . line('.') . 'l\S', 'be')<CR>
noremap <silent> <C-j> :call search('^'. matchstr(getline('.'), '\(^\s*\)') .'\%>' . line('.') . 'l\S', 'e')<CR> " noremap <silent> <C-j> :call search('^'. matchstr(getline('.'), '\(^\s*\)') .'\%>' . line('.') . 'l\S', 'e')<CR>
" Split view navigation " Split view navigation
" Create new panes " Create new panes