summaryrefslogtreecommitdiffstats
path: root/ftplugin/handlebars.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin/handlebars.vim')
-rw-r--r--ftplugin/handlebars.vim22
1 files changed, 0 insertions, 22 deletions
diff --git a/ftplugin/handlebars.vim b/ftplugin/handlebars.vim
deleted file mode 100644
index c4a5dace..00000000
--- a/ftplugin/handlebars.vim
+++ /dev/null
@@ -1,22 +0,0 @@
-" Taken from https://github.com/juvenn/mustache.vim/blob/master/ftplugin/mustache.vim
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-" Matchit support for Handlebars
-" extending HTML matchit groups
-if exists("loaded_matchit") && exists("b:match_words")
- let b:match_words = b:match_words
- \ . ',{:},[:],(:),'
- \ . '\%({{\)\@<=#\s*\%(if\|unless\)\s*.\{-}}}'
- \ . ':'
- \ . '\%({{\)\@<=\s*else\s*}}'
- \ . ':'
- \ . '\%({{\)\@<=/\s*\%(if\|unless\)\s*}},'
- \ . '\%({{\)\@<=[#^]\s*\([-0-9a-zA-Z_?!/.]\+\).\{-}}}'
- \ . ':'
- \ . '\%({{\)\@<=/\s*\1\s*}}'
-endif
-
-let &cpo = s:cpo_save
-unlet s:cpo_save