diff options
Diffstat (limited to 'runtime/compiler')
-rw-r--r-- | runtime/compiler/eruby.vim | 8 | ||||
-rw-r--r-- | runtime/compiler/fpc.vim | 17 | ||||
-rw-r--r-- | runtime/compiler/hp_acc.vim | 9 | ||||
-rw-r--r-- | runtime/compiler/ruby.vim | 6 | ||||
-rw-r--r-- | runtime/compiler/rubyunit.vim | 8 |
5 files changed, 26 insertions, 22 deletions
diff --git a/runtime/compiler/eruby.vim b/runtime/compiler/eruby.vim index 77292bce1..474dafeec 100644 --- a/runtime/compiler/eruby.vim +++ b/runtime/compiler/eruby.vim @@ -2,14 +2,8 @@ " Language: eRuby " Maintainer: Doug Kearns <djkea2 at gus.gscit.monash.edu.au> " Info: $Id$ -" URL: http://vim-ruby.sourceforge.net +" URL: http://vim-ruby.rubyforge.org " Anon CVS: See above site -" Licence: GPL (http://www.gnu.org) -" Disclaimer: -" This program is distributed in the hope that it will be useful, -" but WITHOUT ANY WARRANTY; without even the implied warranty of -" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -" GNU General Public License for more details. " ---------------------------------------------------------------------------- if exists("current_compiler") diff --git a/runtime/compiler/fpc.vim b/runtime/compiler/fpc.vim new file mode 100644 index 000000000..fb4f42498 --- /dev/null +++ b/runtime/compiler/fpc.vim @@ -0,0 +1,17 @@ +" Vim compiler file +" Compiler: FPC 2.1 +" Maintainer: Jaroslaw Blasiok <jaro3000@o2.pl> +" Last Change: 2005 October 07 + +if exists("current_compiler") + finish +endif +let current_compiler = "fpc" + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +" NOTE: compiler must be runned with -vb to write whole source path, not only file +" name. +CompilerSet errorformat=%f(%l\\,%c)\ %m diff --git a/runtime/compiler/hp_acc.vim b/runtime/compiler/hp_acc.vim index eaf61b2f1..685bd5b13 100644 --- a/runtime/compiler/hp_acc.vim +++ b/runtime/compiler/hp_acc.vim @@ -1,8 +1,8 @@ " Vim compiler file " Compiler: HP aCC " Maintainer: Matthias Ulrich <matthias-ulrich@web.de> -" URL: http://www.subhome.de/vim/hp_acc.vim -" Last Change: 2004 Mar 27 +" URL: http://www.subhome.de/vim/hp_acc.vim +" Last Change: 2005 Nov 19 " " aCC --version says: "HP ANSI C++ B3910B A.03.13" " This compiler has been tested on: @@ -10,6 +10,10 @@ " " Tim Brown's aCC is: "HP ANSI C++ B3910B A.03.33" " and it also works fine... +" +" Now suggestions by aCC are supported (compile flag aCC +w). +" Thanks to Tim Brown again!! +" if exists("current_compiler") finish @@ -21,6 +25,7 @@ if exists(":CompilerSet") != 2 " older Vim always used :setlocal endif CompilerSet errorformat=%A%trror\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m, + \%A%tarning\ (suggestion)\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#, \%A%tarning\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#, \%Z\ \ \ \ %p^%.%#, \%-C%.%# diff --git a/runtime/compiler/ruby.vim b/runtime/compiler/ruby.vim index 88b683fbd..d34b37e8f 100644 --- a/runtime/compiler/ruby.vim +++ b/runtime/compiler/ruby.vim @@ -5,12 +5,6 @@ " Info: $Id$ " URL: http://vim-ruby.rubyforge.org " Anon CVS: See above site -" Licence: GPL (http://www.gnu.org) -" Disclaimer: -" This program is distributed in the hope that it will be useful, -" but WITHOUT ANY WARRANTY; without even the implied warranty of -" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -" GNU General Public License for more details. " ---------------------------------------------------------------------------- " " Changelog: diff --git a/runtime/compiler/rubyunit.vim b/runtime/compiler/rubyunit.vim index ba5ddf431..911117801 100644 --- a/runtime/compiler/rubyunit.vim +++ b/runtime/compiler/rubyunit.vim @@ -2,14 +2,8 @@ " Language: Test::Unit - Ruby Unit Testing Framework " Maintainer: Doug Kearns <djkea2 at gus.gscit.monash.edu.au> " Info: $Id$ -" URL: http://vim-ruby.sourceforge.net +" URL: http://vim-ruby.rubyforge.org " Anon CVS: See above site -" Licence: GPL (http://www.gnu.org) -" Disclaimer: -" This program is distributed in the hope that it will be useful, -" but WITHOUT ANY WARRANTY; without even the implied warranty of -" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -" GNU General Public License for more details. " ---------------------------------------------------------------------------- if exists("current_compiler") |