diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-09-29 11:54:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-29 09:54:12 +0000 |
commit | 2c937d723dd6f64705bf4d901254683ba32b2846 (patch) | |
tree | d58b8905507c591f90dd86a56fb45d7643e79c60 /runtime/doc/lua.txt | |
parent | 1405034ba3b1765e451304be0ee8ddc4d285ee87 (diff) | |
download | rneovim-2c937d723dd6f64705bf4d901254683ba32b2846.tar.gz rneovim-2c937d723dd6f64705bf4d901254683ba32b2846.tar.bz2 rneovim-2c937d723dd6f64705bf4d901254683ba32b2846.zip |
docs: misc (#30177)
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Co-authored-by: Riley Bruins <ribru17@hotmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index ef6f2de95f..29b35d69a0 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1709,7 +1709,7 @@ vim.paste({lines}, {phase}) *vim.paste()* -- Scrub ANSI color codes from paste input. lines[i] = line:gsub('\27%[[0-9;mK]+', '') end - overridden(lines, phase) + return overridden(lines, phase) end end)(vim.paste) < |