mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
See @saccarosium 's suggestion at
https://github.com/vim/vim/pull/16311#issuecomment-2563447885
closes: vim/vim#16314
6c57c30ad4
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
13 lines
259 B
VimL
13 lines
259 B
VimL
" 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
|