diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-05-13 15:56:51 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-05-13 16:10:17 +0200 |
commit | b9dae8fbab5c49d5cb7d117de9a782217e6b0f60 (patch) | |
tree | 678c559c854a064e9ad5da2db1a76c8bea354055 /ftplugin | |
parent | 84593f2d7f25ba215a7bab954d639a2718f88c24 (diff) | |
download | vim-polyglot-b9dae8fbab5c49d5cb7d117de9a782217e6b0f60.tar.gz vim-polyglot-b9dae8fbab5c49d5cb7d117de9a782217e6b0f60.zip |
Add mako support, closes #126
Diffstat (limited to '')
-rw-r--r-- | ftplugin/mako.vim | 15 |
1 files changed, 15 insertions, 0 deletions
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 <randy@magnificent-tears.com> +" 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 |