From b49599ce7e6582a2324353baf996c84d084e8a46 Mon Sep 17 00:00:00 2001 From: Sean <44933921+seantwie03@users.noreply.github.com> Date: Fri, 30 Dec 2022 10:55:38 -0600 Subject: [PATCH] docs: clarify line about converse of lua-heredoc (#21592) Co-authored-by: sean.twie03 --- runtime/doc/lua-guide.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/doc/lua-guide.txt b/runtime/doc/lua-guide.txt index e96345cda6..b0b2857300 100644 --- a/runtime/doc/lua-guide.txt +++ b/runtime/doc/lua-guide.txt @@ -199,8 +199,8 @@ this allows you to pass multiple commands to a single call of |vim.cmd()|: highlight link Warning Error ]]) < -This is the converse of |lua-heredoc| and allows you to include Lua code in -your `init.vim`. +This is the converse of |lua-heredoc| and allows you to include Vimscript code in +your `init.lua`. If you want to build your Vim command programmatically, the following form can be useful (all these are equivalent to the corresponding line above):