From c7380d7ab46d6d4d3211b8bd6a2292cb54bc1315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=B6r=C3=B6k=20Edwin?= Date: Mon, 16 Jan 2012 16:27:35 +0200 Subject: [PATCH] drop locaml syntax there is no such syntax, copy+pasto error. --- syntax_checkers/locaml.vim | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 syntax_checkers/locaml.vim diff --git a/syntax_checkers/locaml.vim b/syntax_checkers/locaml.vim deleted file mode 100644 index 02b1280e..00000000 --- a/syntax_checkers/locaml.vim +++ /dev/null @@ -1,26 +0,0 @@ -"============================================================================ -"File: locaml.vim -"Description: Syntax checking plugin for syntastic.vim -"Maintainer: Török Edwin -"License: This program is free software. It comes without any warranty, -" to the extent permitted by applicable law. You can redistribute -" it and/or modify it under the terms of the Do What The Fuck You -" Want To Public License, Version 2, as published by Sam Hocevar. -" See http://sam.zoy.org/wtfpl/COPYING for more details. -" -"============================================================================ -if exists("loaded_locaml_syntax_checker") - finish -endif -let loaded_locaml_syntax_checker = 1 - -"bail if the user doesnt have camlp4o installed -if !executable("camlp4o") - finish -endif - -runtime syntax_checkers/ocaml.vim - -function! SyntaxCheckers_locaml_GetLocList() - return SyntaxCheckers_ocaml_GetLocList() -endfunction