diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2020-08-09 16:55:14 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2020-08-11 12:50:36 +0000 |
| commit | 67a3c6d4264802cb0c506234b24d4c80fa52a76c (patch) | |
| tree | 5a2f44cbec52bd5ecbc9b63768186154370296c7 /.config/vim/compiler/futhark.vim | |
Initial
Diffstat (limited to '.config/vim/compiler/futhark.vim')
| -rw-r--r-- | .config/vim/compiler/futhark.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/vim/compiler/futhark.vim b/.config/vim/compiler/futhark.vim new file mode 100644 index 0000000..132ccfe --- /dev/null +++ b/.config/vim/compiler/futhark.vim @@ -0,0 +1,17 @@ +" Vim compiler file +" Compiler: Futhark Compiler +" Latest Revision: 2020/05/24 + +if exists("current_compiler") || &cp + finish +endif +let current_compiler = "futhark" + +let s:cpo_save = "futhark" +set cpo&vim + +"CompilerSet errorformat=Error at %f:%l:%c-%v:\r%m + + +let &cpo = s:cpo_save +unlet s:cpo_save |
