diff options
author | ii14 <59243201+ii14@users.noreply.github.com> | 2023-07-25 14:07:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 05:07:13 -0700 |
commit | aaa151d506dffa01506619fbdf57537cd2318675 (patch) | |
tree | af63282735cea1eb12ba696ba77bbd8b2631c1eb /runtime/doc/lua-guide.txt | |
parent | 4d0f4c3de9cbdcf85e606b5aaf9488820b95b679 (diff) | |
download | rneovim-aaa151d506dffa01506619fbdf57537cd2318675.tar.gz rneovim-aaa151d506dffa01506619fbdf57537cd2318675.tar.bz2 rneovim-aaa151d506dffa01506619fbdf57537cd2318675.zip |
docs: remove trailing spaces #24455
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 28c9ace23b..61c3925a07 100644 --- a/runtime/doc/lua-guide.txt +++ b/runtime/doc/lua-guide.txt @@ -386,9 +386,9 @@ window is used: >lua vim.bo[4].expandtab = true -- sets expandtab to true in buffer 4 vim.wo.number = true -- sets number to true in current window - vim.wo[0].number = true -- same as above + vim.wo[0].number = true -- same as above vim.wo[0][0].number = true -- sets number to true in current buffer - -- in current window only + -- in current window only print(vim.wo[0].number) --> true < ------------------------------------------------------------------------------ |