diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-01-03 08:29:36 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-03 08:29:36 -0800 |
| commit | b52531a9cbbd1843490333452cd124e8be070690 (patch) | |
| tree | 557a177978bf91f907622c7dfc90d9033ea820c0 /runtime/doc/lua.txt | |
| parent | 21718c67dd9625c53d519a63725db55be6abe2ff (diff) | |
| download | rneovim-b52531a9cbbd1843490333452cd124e8be070690.tar.gz rneovim-b52531a9cbbd1843490333452cd124e8be070690.tar.bz2 rneovim-b52531a9cbbd1843490333452cd124e8be070690.zip | |
docs: misc #31822
* docs: drop "lua-" prefix from most treesitter tags
* docs: move mouse section from tui.txt to gui.txt
* docs: misc
Diffstat (limited to 'runtime/doc/lua.txt')
| -rw-r--r-- | runtime/doc/lua.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 463389ed65..b7c5a50443 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1473,10 +1473,8 @@ vim.go *vim.go* < vim.o *vim.o* - Get or set |options|. Like `:set`. Invalid key is an error. - - Note: this works on both buffer-scoped and window-scoped options using the - current buffer and window. + Get or set |options|. Works like `:set`, so buffer/window-scoped options + target the current buffer/window. Invalid key is an error. Example: >lua vim.o.cmdheight = 4 |