From b9dae8fbab5c49d5cb7d117de9a782217e6b0f60 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Fri, 13 May 2016 15:56:51 +0200 Subject: Add mako support, closes #126 --- ftplugin/mako.vim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ftplugin/mako.vim (limited to 'ftplugin') diff --git a/ftplugin/mako.vim b/ftplugin/mako.vim new file mode 100644 index 00000000..cd8cd534 --- /dev/null +++ b/ftplugin/mako.vim @@ -0,0 +1,15 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'mako') == -1 + +" Vim filetype plugin file +" Language: Mako +" Maintainer: Randy Stauner +" Last Change: 2014-02-07 +" Version: 0.1 + +if exists("b:did_ftplugin") | finish | endif +let b:did_ftplugin = 1 + +setlocal comments=:## +setlocal commentstring=##%s + +endif -- cgit v1.2.3