summaryrefslogtreecommitdiffstats
path: root/autoload/rust/delimitmate.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/rust/delimitmate.vim')
-rw-r--r--autoload/rust/delimitmate.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/autoload/rust/delimitmate.vim b/autoload/rust/delimitmate.vim
index 5e599f6a..8d88a8f4 100644
--- a/autoload/rust/delimitmate.vim
+++ b/autoload/rust/delimitmate.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'rust') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'rust') == -1
let s:delimitMate_extra_excluded_regions = ',rustLifetimeCandidate,rustGenericLifetimeCandidate'
" For this buffer, when delimitMate issues the `User delimitMate_map`
@@ -46,3 +43,4 @@ endfunction
" vim: set et sw=4 sts=4 ts=8:
+endif