diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-05-15 19:39:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-15 19:39:35 +0800 |
commit | ffb4b50e74657b3b15199972371e0cff84f9cd4a (patch) | |
tree | 6e7d3d140faefc69912d0939981963ca8ee38a11 /runtime | |
parent | 61a0aa6c51fb689d196eae37de7d5a75b330efff (diff) | |
download | rneovim-ffb4b50e74657b3b15199972371e0cff84f9cd4a.tar.gz rneovim-ffb4b50e74657b3b15199972371e0cff84f9cd4a.tar.bz2 rneovim-ffb4b50e74657b3b15199972371e0cff84f9cd4a.zip |
docs(lua): restore missing indexing for vim.bo and vim.wo (#28751)
Diffstat (limited to 'runtime')
-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 f227420c75..20a53537bc 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1412,7 +1412,7 @@ Option:remove({value}) *vim.opt:remove()* Parameters: ~ • {value} (`string`) Value to remove -vim.bo *vim.bo* +vim.bo[{bufnr}] *vim.bo* Get or set buffer-scoped |options| for the buffer with number {bufnr}. If {bufnr} is omitted then the current buffer is used. Invalid {bufnr} or key is an error. @@ -1462,7 +1462,7 @@ vim.o *vim.o* print(vim.o.foo) -- error: invalid key < -vim.wo *vim.wo* +vim.wo[{winid}][{bufnr}] *vim.wo* Get or set window-scoped |options| for the window with handle {winid} and buffer with number {bufnr}. Like `:setlocal` if setting a |global-local| option or if {bufnr} is provided, like `:set` otherwise. If {winid} is |