summaryrefslogtreecommitdiffstats
path: root/ftplugin/textile.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin/textile.vim')
-rw-r--r--ftplugin/textile.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/textile.vim b/ftplugin/textile.vim
index 4741f852..681c04db 100644
--- a/ftplugin/textile.vim
+++ b/ftplugin/textile.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'textile') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'textile') == -1
" textile.vim
"
" Tim Harper (tim.theenchanter.com)
@@ -61,3 +58,4 @@ function! TextileRenderBufferToTab()
set syntax=html
endfunction
+endif