diff options
Diffstat (limited to 'ftplugin/textile.vim')
-rw-r--r-- | ftplugin/textile.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftplugin/textile.vim b/ftplugin/textile.vim index a840e600..1e40f380 100644 --- a/ftplugin/textile.vim +++ b/ftplugin/textile.vim @@ -1,3 +1,5 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'textile') == -1 + " textile.vim " " Tim Harper (tim.theenchanter.com) @@ -57,3 +59,5 @@ function! TextileRenderBufferToTab() set syntax=html endfunction + +endif |