Add mako support, closes #126

This commit is contained in:
Adam Stankiewicz
2016-05-13 15:56:51 +02:00
parent 84593f2d7f
commit b9dae8fbab
6 changed files with 475 additions and 0 deletions

15
ftplugin/mako.vim Normal file
View File

@@ -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