diff options
author | Sean <44933921+seantwie03@users.noreply.github.com> | 2022-12-30 10:55:38 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-30 17:55:38 +0100 |
commit | b49599ce7e6582a2324353baf996c84d084e8a46 (patch) | |
tree | b3d77278432d236f8eb5e9fccca6ef660b11429c /runtime/doc/lua-guide.txt | |
parent | f62c30ad0d53fe79bbb00087609d76101371d122 (diff) | |
download | rneovim-b49599ce7e6582a2324353baf996c84d084e8a46.tar.gz rneovim-b49599ce7e6582a2324353baf996c84d084e8a46.tar.bz2 rneovim-b49599ce7e6582a2324353baf996c84d084e8a46.zip |
docs: clarify line about converse of lua-heredoc (#21592)
Co-authored-by: sean.twie03 <nothankyou@gmail.com>
Diffstat (limited to 'runtime/doc/lua-guide.txt')
-rw-r--r-- | runtime/doc/lua-guide.txt | 4 |
1 files 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): |