From 67c39f5ecae0edc3777b2db0f7e637cafa097d05 Mon Sep 17 00:00:00 2001 From: altermo <107814000+altermo@users.noreply.github.com> Date: Mon, 10 Mar 2025 17:15:41 +0100 Subject: fix(tohtml): disable modeline #32822 Problem: Running :TOhtml with a file containing modeline may generate an invalid modeline in the output. Solution: Add `` to the output. Use vi-compatible modeline format ("set foo:"), to avoid the trailing `-->` being treated as part of the modeline. --- test/functional/plugin/tohtml_spec.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/functional/plugin') diff --git a/test/functional/plugin/tohtml_spec.lua b/test/functional/plugin/tohtml_spec.lua index afd4169006..0cc199609c 100644 --- a/test/functional/plugin/tohtml_spec.lua +++ b/test/functional/plugin/tohtml_spec.lua @@ -159,6 +159,7 @@ local function test_generates_html(guifont, expect_font) local out_file = api.nvim_buf_get_name(api.nvim_get_current_buf()) eq({ + '', '', '', '', @@ -212,6 +213,7 @@ describe(':TOhtml', function() n.command('2,2TOhtml') local out_file = api.nvim_buf_get_name(api.nvim_get_current_buf()) eq({ + '', '', '', '', -- cgit