vim: shellcheck shortcuts

This commit is contained in:
Michael Grote 2021-11-24 14:51:25 +01:00
parent 399c277ab8
commit 3fd1499684

5
.vimrc
View file

@ -106,9 +106,12 @@ let g:ctrlp_extensions = ['line', 'undo']
" ### shellcheck " ### shellcheck
" farbe für zeilenmarkierung im quickfix-windows " farbe für zeilenmarkierung im quickfix-windows
hi QuickFixLine ctermbg=black guibg=black hi QuickFixLine ctermbg=black guibg=black
" mit , + n/p wechsele den Eintrag vor/zurück " mit , + n/p wechsele den Eintrag im Quickfix-Windows vor/zurück
" mit , c Offne ShellCheck im QUickfix Windows
nnoremap <leader>n :cn<CR> nnoremap <leader>n :cn<CR>
nnoremap <leader>p :cp<CR> nnoremap <leader>p :cp<CR>
nnoremap <leader>c :ShellCheck!<CR>
" ### lightline/statusline " ### lightline/statusline
" blende insert/visual/... in der commandline aus, steht in lightline " blende insert/visual/... in der commandline aus, steht in lightline
set noshowmode set noshowmode