diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-08-08 18:58:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 18:58:32 +0200 |
commit | e6680ea7c3912d38f2ef967e053be741624633ad (patch) | |
tree | a335929b34a23c6a19d40be749c79d1f27aa6787 /runtime/lua/vim/shared.lua | |
parent | 68c674af0fbc4158690319aa6125a098a592412d (diff) | |
download | rneovim-e6680ea7c3912d38f2ef967e053be741624633ad.tar.gz rneovim-e6680ea7c3912d38f2ef967e053be741624633ad.tar.bz2 rneovim-e6680ea7c3912d38f2ef967e053be741624633ad.zip |
docs(lua): add Lua 5.1 reference manual (#19663)
based on http://www.vim.org/scripts/script.php?script_id=1291
reformatted to match Nvim documentation style; removed irrelevant sections
Co-authored-by: dundargoc <gocundar@gmail.com>
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Co-authored-by: Lewis Russell <lewis6991@gmail.com>
Diffstat (limited to 'runtime/lua/vim/shared.lua')
-rw-r--r-- | runtime/lua/vim/shared.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua index d6c3e25b3b..e1b4ed4ea9 100644 --- a/runtime/lua/vim/shared.lua +++ b/runtime/lua/vim/shared.lua @@ -526,7 +526,7 @@ function vim.trim(s) return s:match('^%s*(.*%S)') or '' end ---- Escapes magic chars in a Lua pattern. +--- Escapes magic chars in |lua-patterns|. --- ---@see https://github.com/rxi/lume ---@param s string String to escape |