diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-04-01 18:03:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-04-01 18:03:16 +0200 |
commit | adc2182c40228d3eaef90779fd18d65715e29203 (patch) | |
tree | ed1aabd346892e932361901dbeb7e5309d6df04e /runtime/compiler | |
parent | 337ae06ff9fe42c871564947aa32e4fe6b08fba9 (diff) | |
download | vim-git-adc2182c40228d3eaef90779fd18d65715e29203.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/compiler')
-rw-r--r-- | runtime/compiler/g95.vim | 23 | ||||
-rw-r--r-- | runtime/compiler/gfortran.vim | 22 | ||||
-rw-r--r-- | runtime/compiler/ifort.vim | 22 |
3 files changed, 67 insertions, 0 deletions
diff --git a/runtime/compiler/g95.vim b/runtime/compiler/g95.vim new file mode 100644 index 000000000..af8f05c8a --- /dev/null +++ b/runtime/compiler/g95.vim @@ -0,0 +1,23 @@ +" Compiler: G95 +" Maintainer: H Xu <xuhdev@gmail.com> +" Version: 0.1.3 +" Last Change: 2011 Apr 01 +" Homepage: http://www.vim.org/scripts/script.php?script_id=3492 +" https://bitbucket.org/xuhdev/compiler-g95.vim +" License: Same as Vim + +if exists('current_compiler') + finish +endif +let current_compiler = 'g95' + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +CompilerSet errorformat= + \%AIn\ file\ %f:%l, + \%-C%p1, + \%-Z%trror:\ %m, + \%-Z%tarning\ (%n):\ %m, + \%-C%.%# diff --git a/runtime/compiler/gfortran.vim b/runtime/compiler/gfortran.vim new file mode 100644 index 000000000..898026e35 --- /dev/null +++ b/runtime/compiler/gfortran.vim @@ -0,0 +1,22 @@ +" Compiler: GNU Fortran Compiler +" Maintainer: H Xu <xuhdev@gmail.com> +" Version: 0.1.3 +" Last Change: 19 March 2011 +" Homepage: http://www.vim.org/scripts/script.php?script_id=3496 +" https://bitbucket.org/xuhdev/compiler-gfortran.vim +" License: Same as Vim + +if exists('current_compiler') + finish +endif +let current_compiler = 'gfortran' + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +CompilerSet errorformat= + \%A%f:%l.%c:, + \%-Z%trror:\ %m, + \%-Z%tarning:\ %m, + \%-C%.%# diff --git a/runtime/compiler/ifort.vim b/runtime/compiler/ifort.vim new file mode 100644 index 000000000..04763f992 --- /dev/null +++ b/runtime/compiler/ifort.vim @@ -0,0 +1,22 @@ +" Compiler: Intel Fortran Compiler +" Maintainer: H Xu <xuhdev@gmail.com> +" Version: 0.1.1 +" Last Change: 19 March 2011 +" Homepage: http://www.vim.org/scripts/script.php?script_id=3497 +" https://bitbucket.org/xuhdev/compiler-ifort.vim +" License: Same as Vim + +if exists('current_compiler') + finish +endif +let current_compiler = 'ifort' + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +CompilerSet errorformat= + \%A%f(%l):\ %trror\ \#%n:\ %m, + \%A%f(%l):\ %tarning\ \#%n:\ %m, + \%-Z%p^, + \%-G%.%# |