blob: 70148e82aae5b81fc1bb149e154f345a032120ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if exists("current_compiler")
finish
endif
let current_compiler = "gmsh"
if exists(":CompilerSet") != 2
command -nargs=* CompilerSet setlocal <args>
endif
setlocal errorformat=[1m[31mError\ \ \ :\ \'%f\'\\,\ line\ %l\ :\ %m[0m
setlocal makeprg=gmsh\ %\ -\\|&\ grep\ Error
|