comparison runtime/autoload/htmlcomplete.vim @ 25773:11b656e74444

Update runtime files Commit: https://github.com/vim/vim/commit/6c391a74fe90190796ca0b0c010112948a6e75d7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 9 21:55:11 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 Sep 2021 22:00:10 +0200
parents 03b854983b14
children
comparison
equal deleted inserted replaced
25772:55753c17b73d 25773:11b656e74444
484 if stripbase !~ "[\"']" 484 if stripbase !~ "[\"']"
485 return [] 485 return []
486 endif 486 endif
487 endif 487 endif
488 " Value of attribute completion {{{ 488 " Value of attribute completion {{{
489 " If attr contains =\s*[\"'] we catched value of attribute 489 " If attr contains =\s*[\"'] we match value of attribute
490 if attr =~ "=\s*[\"']" || attr =~ "=\s*$" 490 if attr =~ "=\s*[\"']" || attr =~ "=\s*$"
491 " Let do attribute specific completion 491 " Let do attribute specific completion
492 let attrname = matchstr(attr, '.*\ze\s*=') 492 let attrname = matchstr(attr, '.*\ze\s*=')
493 let entered_value = matchstr(attr, ".*=\\s*[\"']\\?\\zs.*") 493 let entered_value = matchstr(attr, ".*=\\s*[\"']\\?\\zs.*")
494 let values = [] 494 let values = []