diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-01-01 22:30:41 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-01-01 22:30:41 +0100 |
commit | 05b8bbc938bdeac4a5ee2d3ae5cf7a7f05e822d3 (patch) | |
tree | c01457f2798bbbeaf313ac343315aec5a2aa3859 /after/syntax/html | |
parent | f3b646fd6f6070072d9b4ec958815b74a8a333f2 (diff) | |
download | vim-polyglot-05b8bbc938bdeac4a5ee2d3ae5cf7a7f05e822d3.tar.gz vim-polyglot-05b8bbc938bdeac4a5ee2d3ae5cf7a7f05e822d3.zip |
Fix loading for vim 8 packages, closes #613
Diffstat (limited to 'after/syntax/html')
-rw-r--r-- | after/syntax/html/aria.vim | 2 | ||||
-rw-r--r-- | after/syntax/html/electron.vim | 2 | ||||
-rw-r--r-- | after/syntax/html/rdfa.vim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/after/syntax/html/aria.vim b/after/syntax/html/aria.vim index b589cc5e..6444f63f 100644 --- a/after/syntax/html/aria.vim +++ b/after/syntax/html/aria.vim @@ -1,4 +1,4 @@ -if has_key(g:polyglot_is_disabled, 'html5') +if polyglot#init#is_disabled(expand('<sfile>:p'), 'html5', 'after/syntax/html/aria.vim') finish endif diff --git a/after/syntax/html/electron.vim b/after/syntax/html/electron.vim index 35aa1a1e..7ad41cfc 100644 --- a/after/syntax/html/electron.vim +++ b/after/syntax/html/electron.vim @@ -1,4 +1,4 @@ -if has_key(g:polyglot_is_disabled, 'html5') +if polyglot#init#is_disabled(expand('<sfile>:p'), 'html5', 'after/syntax/html/electron.vim') finish endif diff --git a/after/syntax/html/rdfa.vim b/after/syntax/html/rdfa.vim index 5554f12b..6138f637 100644 --- a/after/syntax/html/rdfa.vim +++ b/after/syntax/html/rdfa.vim @@ -1,4 +1,4 @@ -if has_key(g:polyglot_is_disabled, 'html5') +if polyglot#init#is_disabled(expand('<sfile>:p'), 'html5', 'after/syntax/html/rdfa.vim') finish endif |