diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2021-10-19 13:55:22 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 12:55:22 -0700 |
commit | dfef90a518005a6ace8b363fe1df89dd8ec3c4ce (patch) | |
tree | 77549ad0d64ccae0411338751e29f27a7937abf0 /runtime/doc/lua.txt | |
parent | 064411ea7ff825aed3d4e01207914ed61d7ee79d (diff) | |
download | rneovim-dfef90a518005a6ace8b363fe1df89dd8ec3c4ce.tar.gz rneovim-dfef90a518005a6ace8b363fe1df89dd8ec3c4ce.tar.bz2 rneovim-dfef90a518005a6ace8b363fe1df89dd8ec3c4ce.zip |
fix(gen_vimdoc.py): spacing around inline elements #16092
The spacing fix drew attention to a couple of places that were using
incorrect formatting such as the key listing for `nvim_open_win`, so
those were fixed too.
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index a6ccf9f35c..42d837c21b 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1518,7 +1518,7 @@ tbl_flatten({t}) *vim.tbl_flatten()* Flattened copy of the given list-like table. See also: ~ - Fromhttps://github.com/premake/premake-core/blob/master/src/base/table.lua + From https://github.com/premake/premake-core/blob/master/src/base/table.lua tbl_isempty({t}) *vim.tbl_isempty()* Checks if a table is empty. @@ -1554,7 +1554,7 @@ tbl_keys({t}) *vim.tbl_keys()* list of keys See also: ~ - Fromhttps://github.com/premake/premake-core/blob/master/src/base/table.lua + From https://github.com/premake/premake-core/blob/master/src/base/table.lua tbl_map({func}, {t}) *vim.tbl_map()* Apply a function to all values of a table. |