vim: shellcheck shortcuts
This commit is contained in:
parent
399c277ab8
commit
3fd1499684
1 changed files with 4 additions and 1 deletions
5
.vimrc
5
.vimrc
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue