diff options
| author | Cody Hiar <codyfh@gmail.com> | 2018-05-29 11:09:16 -0600 | 
|---|---|---|
| committer | Cody Hiar <codyfh@gmail.com> | 2018-05-29 11:09:16 -0600 | 
| commit | 6de7a10eb06ab1de087ebd3ca594abdea841727a (patch) | |
| tree | 7695ee8c997978c8bd641e4f8c43f1f02211e4e9 | |
| parent | eb02361ae3f49a560ba35ba18c2f546ab4668c04 (diff) | |
Error jumping commands
| -rw-r--r-- | plugin/vim-options.vim | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 525c6c4..66bd0d0 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -91,6 +91,10 @@ nnoremap <leader>ld j^f$lC  nnoremap <leader>ly vapy<C-o>p{{jvEy}jvEpl  " Accept current autocomplete suggestion  inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<CR>" +" Faster jumping for linting erros +nnoremap [q :lprev<CR> +nnoremap ]q :lnext<CR> + | 
