aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/template.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-08-01 23:21:22 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-08-01 23:27:26 +0200
commit532ee54a42a294073e8b441f3ce5a050d16963a2 (patch)
tree9b474891db31d3b920e9c8040cfeb388bf090d75 /runtime/syntax/template.vim
parentf379eac1ef9926ecefab7302f876c7c93b5cca74 (diff)
downloadrneovim-532ee54a42a294073e8b441f3ce5a050d16963a2.tar.gz
rneovim-532ee54a42a294073e8b441f3ce5a050d16963a2.tar.bz2
rneovim-532ee54a42a294073e8b441f3ce5a050d16963a2.zip
vim-patch:a6c27c47ddf0
Update runtime files https://github.com/vim/vim/commit/a6c27c47ddf081859659d7de1caec675147e466b
Diffstat (limited to 'runtime/syntax/template.vim')
-rw-r--r--runtime/syntax/template.vim15
1 files changed, 15 insertions, 0 deletions
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 <Bram@vim.org>
+" 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