summaryrefslogtreecommitdiffstats
path: root/compiler/lacheck.vim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/lacheck.vim')
-rw-r--r--compiler/lacheck.vim20
1 files changed, 0 insertions, 20 deletions
diff --git a/compiler/lacheck.vim b/compiler/lacheck.vim
deleted file mode 100644
index b8b4c84a..00000000
--- a/compiler/lacheck.vim
+++ /dev/null
@@ -1,20 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1
-
-if exists('current_compiler') | finish | endif
-let current_compiler = 'lacheck'
-
-" Older Vim always used :setlocal
-if exists(':CompilerSet') != 2
- command -nargs=* CompilerSet setlocal <args>
-endif
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-CompilerSet makeprg=lacheck\ %:S
-CompilerSet errorformat="%f",\ line\ %l:\ %m
-
-let &cpo = s:cpo_save
-unlet s:cpo_save
-
-endif