view runtime/indent/testdir/html.ok @ 27221:165a799b4129 v8.2.4139

patch 8.2.4139: using freed memory in expression abbreviation Commit: https://github.com/vim/vim/commit/94075b2b0e8e3b75334799d2c082497fbf85ffa1 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 18 20:30:39 2022 +0000 patch 8.2.4139: using freed memory in expression abbreviation Problem: Using freed memory if an expression abbreviation deletes the abbreviation. Solution: Do not access the pointer after evaluating the expression.
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Jan 2022 21:45:02 +0100
parents 5b37a0bf7e3a
children 4789f29c9595
line wrap: on
line source

" vim: set ft=html sw=4 :


" START_INDENT
<html>
    <body>
	<style>
div#d1 { color: red; }
div#d2 { color: green; }
	</style>
	<script>
	    var v1 = "v1";
	    var v2 = "v2";
	</script>
	<div>
	    <div>
		text
	    </div>
	</div>

	<div
		class="foo bar">
	    text
	</div>

	<div class="foo bar"
	     data="something">
	    text
	</div>

	<div class="foo
		    bar">
	    text
	</div>

	<dl>
	    <dd>
		dd text
	    </dd>
	    <dt>
		dt text
	    </dt>
	</dl>

    </body>
</html>

" END_INDENT

% START_INDENT
% INDENT_EXE let g:html_indent_style1 = "inc"
% INDENT_EXE let g:html_indent_script1 = "zero"
% INDENT_EXE call HtmlIndent_CheckUserSettings()
<html>
    <body>
	<style>
	    div#d1 { color: red; }
	    div#d2 { color: green; }
	</style>
	<script>
var v1 = "v1";
var v2 = "v2";
	</script>
    </body>
</html>
% END_INDENT