1 "------------------------------------------------------------------------------
2 " Description: Vim Ada/Dec Ada compiler file
3 " Language: Ada (Dec Ada)
4 " $Id: decada.vim 887 2008-07-08 14:29:01Z krischik $
5 " Copyright: Copyright (C) 2006 Martin Krischik
6 " Maintainer: Martin Krischik <krischik@users.sourceforge.net>
8 " $Date: 2008-07-08 16:29:01 +0200 (Di, 08 Jul 2008) $
11 " $HeadURL: https://gnuada.svn.sourceforge.net/svnroot/gnuada/trunk/tools/vim/compiler/decada.vim $
12 " History: 21.07.2006 MK New Dec Ada
13 " 15.10.2006 MK Bram's suggestion for runtime integration
14 " 08.09.2006 MK Correct double load protection.
15 " Help Page: compiler-decada
16 "------------------------------------------------------------------------------
18 if (exists("current_compiler") && current_compiler == "decada") || version < 700
24 let current_compiler = "decada"
26 if !exists("g:decada")
27 let g:decada = decada#New ()
32 \'call decada.Make ()')
34 call g:decada.Set_Session ()
37 if exists(":CompilerSet") != 2
39 " plugin loaded by other means then the "compiler" command
41 command -nargs=* CompilerSet setlocal <args>
44 execute "CompilerSet makeprg=" . escape (g:decada.Make_Command, ' ')
45 execute "CompilerSet errorformat=" . escape (g:decada.Error_Format, ' ')
52 "------------------------------------------------------------------------------
53 " Copyright (C) 2006 Martin Krischik
55 " Vim is Charityware - see ":help license" or uganda.txt for licence details.
56 "------------------------------------------------------------------------------
57 " vim: textwidth=78 wrap tabstop=8 shiftwidth=3 softtabstop=3 noexpandtab
58 " vim: foldmethod=marker