We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 327054d commit cf49790Copy full SHA for cf49790
1 file changed
runtime/compiler/ghc.vim
@@ -0,0 +1,26 @@
1
+" Vim compiler file
2
+" Compiler: GHC Haskell Compiler
3
+" Maintainer: Daniel Campoverde <[email protected]>
4
+" Latest Revision: 2016-11-29
5
+
6
+if exists("current_compiler")
7
+ finish
8
+endif
9
+let current_compiler = "ghc"
10
11
+let s:cpo_save = &cpo
12
+set cpo&vim
13
14
+CompilerSet errorformat=
15
+ \%-G%.%#:\ build,
16
+ \%-G%.%#preprocessing\ library\ %.%#,
17
+ \%-G[%.%#]%.%#,
18
+ \%E%f:%l:%c:\ %m,
19
+ \%-G--%.%#
20
21
+if exists('g:compiler_ghc_ignore_unmatched_lines')
22
+ CompilerSet errorformat+=%-G%.%#
23
24
25
+let &cpo = s:cpo_save
26
+unlet s:cpo_save
0 commit comments