aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-01-22 22:54:45 +0800
committerGitHub <noreply@github.com>2024-01-22 22:54:45 +0800
commitcb6320e13f9a4f13ec745ce0bc34203cfa7612d0 (patch)
treed01c926acef550aedda309029da1b0c7fb23754f /runtime/lua/vim/_meta/options.lua
parentb4da4783f98837efb7192a3e5a40dd491aeb1491 (diff)
downloadrneovim-cb6320e13f9a4f13ec745ce0bc34203cfa7612d0.tar.gz
rneovim-cb6320e13f9a4f13ec745ce0bc34203cfa7612d0.tar.bz2
rneovim-cb6320e13f9a4f13ec745ce0bc34203cfa7612d0.zip
docs(options): remove misleading sentence (#27129)
Setting 'verbose' to 1 doesn't cause Nvim to produce messages. It adds more information to existing messages, which is documented above.
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r--runtime/lua/vim/_meta/options.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua
index 60339f57d8..1a215b1715 100644
--- a/runtime/lua/vim/_meta/options.lua
+++ b/runtime/lua/vim/_meta/options.lua
@@ -7432,15 +7432,15 @@ vim.bo.vts = vim.bo.vartabstop
--- Sets the verbosity level. Also set by `-V` and `:verbose`.
---
---- Tracing of options in Lua scripts is activated at level 1; Lua scripts
---- are not traced with verbose=0, for performance.
+--- Tracing of assignments to options, mappings, etc. in Lua scripts is
+--- enabled at level 1; Lua scripts are not traced when 'verbose' is 0,
+--- for performance.
---
--- If greater than or equal to a given level, Nvim produces the following
--- messages:
---
--- Level Messages ~
--- ----------------------------------------------------------------------
---- 1 Lua assignments to options, mappings, etc.
--- 2 When a file is ":source"'ed, or `shada` file is read or written.
--- 3 UI info, terminal capabilities.
--- 4 Shell commands.