mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:6c57c30: runtime(compiler): include a basic bash syntax checker compiler
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>
This commit is contained in:
parent
35247b00a4
commit
48c09ed4d9
12
runtime/compiler/bash.vim
Normal file
12
runtime/compiler/bash.vim
Normal file
@ -0,0 +1,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
|
Loading…
Reference in New Issue
Block a user