neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

g95.vim (637B)


      1 " Compiler: G95
      2 " Maintainer: H Xu <xuhdev@gmail.com>
      3 " Version: 0.1.3
      4 " Last Change: 2012 Apr 30
      5 "              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      6 " Homepage: http://www.vim.org/scripts/script.php?script_id=3492
      7 "           https://bitbucket.org/xuhdev/compiler-g95.vim
      8 " License: Same as Vim
      9 
     10 if exists('current_compiler')
     11    finish
     12 endif
     13 let current_compiler = 'g95'
     14 let s:keepcpo= &cpo
     15 set cpo&vim
     16 
     17 CompilerSet errorformat=
     18            \%AIn\ file\ %f:%l,
     19            \%-C%p1,
     20            \%-Z%trror:\ %m,
     21            \%-Z%tarning\ (%n):\ %m,
     22            \%-C%.%#
     23 
     24 let &cpo = s:keepcpo
     25 unlet s:keepcpo