blob: cbd76ae410a62cb63b69ba36c7d386c01a9f8c35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
" Vim compiler file
" Compiler: Bash Syntax Checker
" Maintainer: @konfekt
" Last Change: 2024 Dec 27
if exists("current_compiler")
finish
endif
let current_compiler = "bash"
CompilerSet makeprg=bash\ -n
CompilerSet errorformat=%f:\ line\ %l:\ %m
|