mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
Merge pull request #15079 from shadmansaleh/feat/verbose_lua
feat(lua): add :verbose support for lua config
This commit is contained in:
@@ -6716,8 +6716,8 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
global
|
||||
When bigger than zero, Vim will give messages about what it is doing.
|
||||
Currently, these messages are given:
|
||||
>= 1 When the shada file is read or written.
|
||||
>= 2 When a file is ":source"'ed.
|
||||
>= 1 Lua assignments to options,keymaps etc.
|
||||
>= 2 When a file is ":source"'ed and when the shada file is read or written..
|
||||
>= 3 UI info, terminal capabilities
|
||||
>= 4 Shell commands.
|
||||
>= 5 Every searched tags file and include file.
|
||||
|
@@ -461,10 +461,11 @@ g8 Print the hex values of the bytes used in the
|
||||
*:verbose-cmd*
|
||||
When 'verbose' is non-zero, listing the value of a Vim option or a key map or
|
||||
an abbreviation or a user-defined function or a command or a highlight group
|
||||
or an autocommand will also display where it was last defined. If it was
|
||||
defined manually then there will be no "Last set" message. When it was
|
||||
defined while executing a function, user command or autocommand, the script in
|
||||
which it was defined is reported.
|
||||
or an autocommand will also display where it was last defined. If they were
|
||||
defined in Lua they will only be located if 'verbose' is set. So Start
|
||||
nvim with -V1 arg to see them. If it was defined manually then there
|
||||
will be no "Last set" message. When it was defined while executing a function,
|
||||
user command or autocommand, the script in which it was defined is reported.
|
||||
|
||||
*K*
|
||||
[count]K Runs the program given by 'keywordprg' to lookup the
|
||||
|
Reference in New Issue
Block a user