diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-05 02:47:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-11-05 22:45:48 +0100 |
commit | 72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e (patch) | |
tree | 0d3c93afc250c95a74510825c6153b24a1ff06b8 /runtime/doc/if_lua.txt | |
parent | 1bbbd5f0ff27e75fd0d68f16cf1817cb19218bb4 (diff) | |
download | rneovim-72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e.tar.gz rneovim-72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e.tar.bz2 rneovim-72b1ce7f30f8bdc60ba6e2bcfd2eca5e687b6f3e.zip |
doc: fix/remove broken tag references
Diffstat (limited to 'runtime/doc/if_lua.txt')
-rw-r--r-- | runtime/doc/if_lua.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/doc/if_lua.txt b/runtime/doc/if_lua.txt index 17c1a8a329..9dbbf87995 100644 --- a/runtime/doc/if_lua.txt +++ b/runtime/doc/if_lua.txt @@ -229,8 +229,7 @@ shared between command calls. All Lua default libraries are available. In addition, Lua "print" function has its output redirected to the Nvim message area, with arguments separated by a white space instead of a tab. -Lua uses the "vim" module (see |lua-vim|) to issue commands to Nvim -and manage buffers (|lua-buffer|) and windows (|lua-window|). However, +Lua uses the "vim" module (see |lua-vim|) to issue commands to Nvim. However, procedures that alter buffer content, open new buffers, and change cursor position are restricted when the command is executed in the |sandbox|. @@ -261,7 +260,7 @@ vim.stricmp(a, b) *lua-vim.stricmp* greater then b or a is lesser then b respectively. vim.type_idx *lua-vim.type_idx* - Type index for use in |lua-special-tables|. Specifying one of the + Type index for use in |lua-special-tbl|. Specifying one of the values from |lua-vim.types| allows typing the empty table (it is unclear whether empty lua table represents empty list or empty array) and forcing integral numbers to be |Float|. See |lua-special-tbl| for |