diff options
Diffstat (limited to '.config/vim/compiler')
| -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 |
