Preserve loading order of plugins, fixes #608

This commit is contained in:
Adam Stankiewicz
2020-10-25 20:33:44 +01:00
parent 81ada1101e
commit 45a7512dea
1287 changed files with 1963 additions and 1952 deletions

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('8th', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, '8th')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('a2ps', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'a2ps')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('aap', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'aap')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('abap', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'abap')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('abaqus', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'abaqus')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ada', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ada')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('alsaconf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'alsaconf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ansible', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ansible')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ansible', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ansible')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ant', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ant')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('arch', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'arch')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('art', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'art')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('aspvbs', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'aspvbs')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('automake', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'automake')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('awk', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'awk')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('bdf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'bdf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('blade', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'blade')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('bst', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'bst')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('bzl', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'bzl')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('caddyfile', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'caddyfile')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('calendar', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'calendar')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cdrdaoconf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cdrdaoconf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cfg', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cfg')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ch', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ch')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('clojure', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'clojure')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cobol', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cobol')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('coffee-script', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'coffee-script')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('conf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'conf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('config', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'config')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('crm', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'crm')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cryptol', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cryptol')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'crystal')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cs', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cs')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('csc', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'csc')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('css', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'css')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('csv', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'csv')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cucumber', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cucumber')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('cvsrc', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'cvsrc')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dart', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dart')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('debchangelog', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'debchangelog')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('debcontrol', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'debcontrol')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('denyhosts', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'denyhosts')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dhall', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dhall')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dictconf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dictconf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dictdconf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dictdconf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('diff', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'diff')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dircolors', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dircolors')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('docker-compose', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'docker-compose')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dockerfile', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dockerfile')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dosbatch', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dosbatch')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dosini', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dosini')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('dtd', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'dtd')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ocaml', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ocaml')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'crystal')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('elixir', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'elixir')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('elinks', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'elinks')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('elixir', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'elixir')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('puppet', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'puppet')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('emberscript', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'emberscript')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('emblem', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'emblem')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ruby', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ruby')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('eterm', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'eterm')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('falcon', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'falcon')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('fennel', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'fennel')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('fetchmail', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'fetchmail')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('fish', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'fish')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('fortran', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'fortran')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('framescript', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'framescript')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('fvwm', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'fvwm')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('gdb', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'gdb')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('git', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'git')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('git', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'git')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('git', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'git')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('gitignore', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'gitignore')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('git', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'git')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('git', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'git')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('gpg', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'gpg')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('graphql', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'graphql')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('groovy', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'groovy')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('group', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'group')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('grub', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'grub')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('haml', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'haml')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hamster', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hamster')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('handlebars', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'handlebars')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hcl', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hcl')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('help', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'help')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hgcommit', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hgcommit')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hive', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hive')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hog', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hog')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hostconf', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hostconf')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('hostsaccess', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'hostsaccess')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('html', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'html')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('htmldjango', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'htmldjango')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('i3', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'i3')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('idris', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'idris')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('idris2', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'idris2')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('indent', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'indent')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('ion', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'ion')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('j', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'j')
finish
endif

View File

@@ -1,4 +1,4 @@
if !polyglot#util#IsEnabled('java', expand('<sfile>:p'))
if !has_key(g:polyglot_is_disabled, 'java')
finish
endif

Some files were not shown because too many files have changed in this diff Show More