diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-22 23:08:48 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:27 -0400 |
commit | b1fed1ada9635f762cb9b3a7f2fe38df6f166df4 (patch) | |
tree | 902105afdb2ab3b400d7a1f503063a923a420d44 /runtime/autoload | |
parent | 766a10783982936da8f1eaf61280338fcd85019a (diff) | |
download | rneovim-b1fed1ada9635f762cb9b3a7f2fe38df6f166df4.tar.gz rneovim-b1fed1ada9635f762cb9b3a7f2fe38df6f166df4.tar.bz2 rneovim-b1fed1ada9635f762cb9b3a7f2fe38df6f166df4.zip |
vim-patch:5be4ceecea55
Update runtime files.
https://github.com/vim/vim/commit/5be4ceecea5520265066eac972460ebb1cdf05e7
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/htmlcomplete.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/autoload/htmlcomplete.vim b/runtime/autoload/htmlcomplete.vim index 984ba8b58e..6b9d49a469 100644 --- a/runtime/autoload/htmlcomplete.vim +++ b/runtime/autoload/htmlcomplete.vim @@ -1,7 +1,7 @@ " Vim completion script " Language: HTML and XHTML " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) -" Last Change: 2014 Jun 20 +" Last Change: 2019 Sep 27 " Distinguish between HTML versions. " To use with other HTML versions add another "elseif" condition to match @@ -245,7 +245,8 @@ function! htmlcomplete#CompleteTags(findstart, base) " If context contains white space it is attribute. " It can be also value of attribute. " We have to get first word to offer proper completions - if context == '' + if context =~ '^\s*$' + " empty or whitespace line let tag = '' else let tag = split(context)[0] |