From 532ee54a42a294073e8b441f3ce5a050d16963a2 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 1 Aug 2019 23:21:22 +0200 Subject: vim-patch:a6c27c47ddf0 Update runtime files https://github.com/vim/vim/commit/a6c27c47ddf081859659d7de1caec675147e466b --- runtime/syntax/template.vim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 runtime/syntax/template.vim (limited to 'runtime/syntax/template.vim') diff --git a/runtime/syntax/template.vim b/runtime/syntax/template.vim new file mode 100644 index 0000000000..5bf580fc11 --- /dev/null +++ b/runtime/syntax/template.vim @@ -0,0 +1,15 @@ +" Vim syntax file +" Language: Generic template +" Maintainer: Bram Moolenaar +" Last Change: 2019 May 06 + +" Quit when a (custom) syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +" Known template types are very similar to HTML, E.g. golang and "Xfire User +" Interface Template" +" If you know how to recognize a more specific type for *.tmpl suggest a +" change to runtime/scripts.vim. +runtime! syntax/html.vim -- cgit