mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
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.
This commit is contained in:
@@ -6807,15 +6807,15 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
global
|
global
|
||||||
Sets the verbosity level. Also set by |-V| and |:verbose|.
|
Sets the verbosity level. Also set by |-V| and |:verbose|.
|
||||||
|
|
||||||
Tracing of options in Lua scripts is activated at level 1; Lua scripts
|
Tracing of assignments to options, mappings, etc. in Lua scripts is
|
||||||
are not traced with verbose=0, for performance.
|
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
|
If greater than or equal to a given level, Nvim produces the following
|
||||||
messages:
|
messages:
|
||||||
|
|
||||||
Level Messages ~
|
Level Messages ~
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
1 Lua assignments to options, mappings, etc.
|
|
||||||
2 When a file is ":source"'ed, or |shada| file is read or written.
|
2 When a file is ":source"'ed, or |shada| file is read or written.
|
||||||
3 UI info, terminal capabilities.
|
3 UI info, terminal capabilities.
|
||||||
4 Shell commands.
|
4 Shell commands.
|
||||||
|
6
runtime/lua/vim/_meta/options.lua
generated
6
runtime/lua/vim/_meta/options.lua
generated
@@ -7432,15 +7432,15 @@ vim.bo.vts = vim.bo.vartabstop
|
|||||||
|
|
||||||
--- Sets the verbosity level. Also set by `-V` and `:verbose`.
|
--- Sets the verbosity level. Also set by `-V` and `:verbose`.
|
||||||
---
|
---
|
||||||
--- Tracing of options in Lua scripts is activated at level 1; Lua scripts
|
--- Tracing of assignments to options, mappings, etc. in Lua scripts is
|
||||||
--- are not traced with verbose=0, for performance.
|
--- 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
|
--- If greater than or equal to a given level, Nvim produces the following
|
||||||
--- messages:
|
--- messages:
|
||||||
---
|
---
|
||||||
--- Level Messages ~
|
--- Level Messages ~
|
||||||
--- ----------------------------------------------------------------------
|
--- ----------------------------------------------------------------------
|
||||||
--- 1 Lua assignments to options, mappings, etc.
|
|
||||||
--- 2 When a file is ":source"'ed, or `shada` file is read or written.
|
--- 2 When a file is ":source"'ed, or `shada` file is read or written.
|
||||||
--- 3 UI info, terminal capabilities.
|
--- 3 UI info, terminal capabilities.
|
||||||
--- 4 Shell commands.
|
--- 4 Shell commands.
|
||||||
|
@@ -9291,15 +9291,15 @@ return {
|
|||||||
desc = [=[
|
desc = [=[
|
||||||
Sets the verbosity level. Also set by |-V| and |:verbose|.
|
Sets the verbosity level. Also set by |-V| and |:verbose|.
|
||||||
|
|
||||||
Tracing of options in Lua scripts is activated at level 1; Lua scripts
|
Tracing of assignments to options, mappings, etc. in Lua scripts is
|
||||||
are not traced with verbose=0, for performance.
|
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
|
If greater than or equal to a given level, Nvim produces the following
|
||||||
messages:
|
messages:
|
||||||
|
|
||||||
Level Messages ~
|
Level Messages ~
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
1 Lua assignments to options, mappings, etc.
|
|
||||||
2 When a file is ":source"'ed, or |shada| file is read or written.
|
2 When a file is ":source"'ed, or |shada| file is read or written.
|
||||||
3 UI info, terminal capabilities.
|
3 UI info, terminal capabilities.
|
||||||
4 Shell commands.
|
4 Shell commands.
|
||||||
|
Reference in New Issue
Block a user