From 2d78859c044f3060b2aaa84ff56a0c7935c2ff1e Mon Sep 17 00:00:00 2001 From: qugalet Date: Fri, 6 Dec 2024 15:56:39 +0200 Subject: [PATCH] =?UTF-8?q?changes=20from=20claymore=20on=20=D0=BF'=D1=8F?= =?UTF-8?q?=D1=82=D0=BD=D0=B8=D1=86=D1=8F,=206=20=D0=B3=D1=80=D1=83=D0=B4?= =?UTF-8?q?=D0=BD=D1=8F=202024=2015:56:39=20+0200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- after/plugin/fileformat.vim | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 after/plugin/fileformat.vim diff --git a/after/plugin/fileformat.vim b/after/plugin/fileformat.vim deleted file mode 100644 index 32d385e..0000000 --- a/after/plugin/fileformat.vim +++ /dev/null @@ -1,10 +0,0 @@ -function DetectGoHtmlTmpl() - if expand('%:e') == "html" && search("{{") != 0 - setfiletype gohtmltmpl - endif -endfunction - -augroup filetypedetect - " gohtmltmpl - au BufRead,BufNewFile *.html call DetectGoHtmlTmpl() -augroup END