docs: remove trailing spaces #24455

This commit is contained in:
ii14
2023-07-25 14:07:13 +02:00
committed by GitHub
parent 4d0f4c3de9
commit aaa151d506
18 changed files with 130 additions and 130 deletions

View File

@@ -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
<
------------------------------------------------------------------------------