comparison runtime/indent/html.vim @ 29533:34c1f4cd0c18

Update runtime files Commit: https://github.com/vim/vim/commit/2ecbe53f452e92e941aff623f6a0b72f80e43d07 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 29 21:36:21 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 29 Jul 2022 22:45:04 +0200
parents 4789f29c9595
children 71cbad0921c9
comparison
equal deleted inserted replaced
29532:9ab2caa93280 29533:34c1f4cd0c18
598 " indent for the first line after <script> 598 " indent for the first line after <script>
599 return eval(b:hi_js1indent) 599 return eval(b:hi_js1indent)
600 endif 600 endif
601 if b:hi_indent.scripttype == "javascript" 601 if b:hi_indent.scripttype == "javascript"
602 " indent for further lines 602 " indent for further lines
603 return eval(b:hi_js1indent) + GetJavascriptIndent() 603 return GetJavascriptIndent()
604 else 604 else
605 return -1 605 return -1
606 endif 606 endif
607 endfunc "}}} 607 endfunc "}}}
608 608