commit b9bd6efb3ec17e1d1360a131029392f93c2d59fd parent 797adc84ad65f34deb4dd312a6a85d95eba8a721 Author: Anders Damsgaard <andersd@riseup.net> Date: Wed, 14 Mar 2018 13:34:27 -0400 Fix ALE navigation bindings Diffstat:
M | links/.vim/plugin/keybinds.vim | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/links/.vim/plugin/keybinds.vim b/links/.vim/plugin/keybinds.vim @@ -199,7 +199,7 @@ let g:startify_custom_header = nnoremap <leader>J :OnlineThesaurusCurrentWord<CR> " ALE navigation -nnoremap <silent> [W <Plug>(ale_first) -nnoremap <silent> [w <Plug>(ale_previous) -nnoremap <silent> ]w <Plug>(ale_next) -nnoremap <silent> ]W <Plug>(ale_last) +nnoremap <silent> [W :ALEFirst<cr> +nnoremap <silent> [w :ALEPreviousWrap<cr> +nnoremap <silent> ]w :ALENextWrap<cr> +nnoremap <silent> ]W :ALELast<cr>