From 0d34a0be7e39e3817f03b53c5152c5aebca3a235 Mon Sep 17 00:00:00 2001 From: Daniel Sissom Date: Sat, 19 Oct 2019 14:05:09 -0500 Subject: [PATCH] Added vim navigation mappings for Ale warnings/errors. --- vim/vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index 5f44ebb..a11e604 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -152,6 +152,12 @@ call plug#end() " press / instead of _ nnoremap :NERDTreeToggle nnoremap :ALEToggle +nmap [W (ale_first) +nmap ]W (ale_last) +nmap [w (ale_previous_wrap) +nmap ]w (ale_next_wrap) +nmap [e (ale_previous_wrap_error) +nmap ]e (ale_next_wrap_error) let g:ycm_autoclose_preview_window_after_insertion = 1