dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit f43047cdfa829e0f6df123d1301adcd731068be9
parent b61899f9bc7fcc52b6cc5b8fa5b691c3c23473e8
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 12 May 2020 15:24:35 +0200

vim: gnatmake compiler

Former-commit-id: 8f3663de2246cd25630ab4ddc6711d5e5c6f7f56
Diffstat:
Avim/compiler/gnatmake.vim | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/vim/compiler/gnatmake.vim b/vim/compiler/gnatmake.vim @@ -0,0 +1,9 @@ +if exists("current_compiler") + finish +endif +let current_compiler = "ada" +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif +CompilerSet makeprg=gnatmake\ % +CompilerSet errorformat=%f:%l:%c:\ %m,%f:%l:%c:\ %tarning:\ %m,%f:%l:%c:\ (%ttyle)\ %m