From cb6f2ba1140cd2bc40fc5956aaa5b7d1e7fede30 Mon Sep 17 00:00:00 2001 From: Andrew Radev Date: Mon, 16 Jan 2017 21:37:36 +0200 Subject: [PATCH] Evaluate handlebars indent in mustache files --- ftdetect/mustache.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftdetect/mustache.vim b/ftdetect/mustache.vim index 0191c09..ed8f832 100644 --- a/ftdetect/mustache.vim +++ b/ftdetect/mustache.vim @@ -1,4 +1,4 @@ if has("autocmd") - au BufNewFile,BufRead *.mustache,*.hogan,*.hulk,*.hjs set filetype=html.mustache syntax=mustache | runtime! ftplugin/mustache.vim ftplugin/mustache*.vim ftplugin/mustache/*.vim + au BufNewFile,BufRead *.mustache,*.hogan,*.hulk,*.hjs set filetype=html.mustache syntax=mustache | runtime! ftplugin/mustache.vim ftplugin/mustache*.vim ftplugin/mustache/*.vim indent/handlebars.vim au BufNewFile,BufRead *.handlebars,*.hdbs,*.hbs set filetype=html.handlebars syntax=mustache | runtime! ftplugin/mustache.vim ftplugin/mustache*.vim ftplugin/mustache/*.vim endif