Skip to content

Commit 45a7512

Browse files
committed
Preserve loading order of plugins, fixes #608
1 parent 81ada11 commit 45a7512

File tree

1,287 files changed

+1963
-1952
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,287 files changed

+1963
-1952
lines changed

after/ftplugin/cabal.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('haskell', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'haskell')
22
finish
33
endif
44

after/ftplugin/coffee.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('cjsx', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'cjsx')
22
finish
33
endif
44

after/ftplugin/haskell.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('haskell', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'haskell')
22
finish
33
endif
44

after/ftplugin/html.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('html5', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'html5')
22
finish
33
endif
44

after/ftplugin/idris.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('idris', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'idris')
22
finish
33
endif
44

after/ftplugin/idris2.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('idris2', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'idris2')
22
finish
33
endif
44

after/ftplugin/javascript-1.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('javascript', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'javascript')
22
finish
33
endif
44

after/ftplugin/javascript-2.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('jsx', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'jsx')
22
finish
33
endif
44

after/ftplugin/javascriptreact.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('jsx', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'jsx')
22
finish
33
endif
44

after/ftplugin/jsx.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !polyglot#util#IsEnabled('jsx', expand('<sfile>:p'))
1+
if !has_key(g:polyglot_is_disabled, 'jsx')
22
finish
33
endif
44

0 commit comments

Comments
 (0)