summaryrefslogtreecommitdiffstats
path: root/syntax/html/electron.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/html/electron.vim')
-rw-r--r--syntax/html/electron.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/syntax/html/electron.vim b/syntax/html/electron.vim
index 35e60dd4..64ed9e9b 100644
--- a/syntax/html/electron.vim
+++ b/syntax/html/electron.vim
@@ -1,5 +1,7 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1
-
+if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'html5') != -1
+ finish
+endif
+
" Vim syntax file
" Language: Electron
" Maintainer: othree <othree@gmail.com>
@@ -15,5 +17,3 @@ syn keyword htmlArg contained useragent disablewebsecurity partition allowpopups
syn keyword htmlArg contained webpreferences blinkfeatures disableblinkfeatures
syn keyword htmlArg contained guestinstance disableguestresize
-
-endif