diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-11-09 01:10:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-09 08:10:56 +0800 |
commit | 5a27d02584656f35d757c01f10a1d3c88910c519 (patch) | |
tree | e7c588b6c5c732d9462180f56d25c5df1be894be /src/nvim/api/vim.c | |
parent | ad3472e291694b6c589d8a664459b03962eaac95 (diff) | |
download | rneovim-5a27d02584656f35d757c01f10a1d3c88910c519.tar.gz rneovim-5a27d02584656f35d757c01f10a1d3c88910c519.tar.bz2 rneovim-5a27d02584656f35d757c01f10a1d3c88910c519.zip |
docs: misc (#30914)
Co-authored-by: Ernie Rael <errael@raelity.com>
Co-authored-by: Famiu Haque <famiuhaque@proton.me>
Co-authored-by: Jade <spacey-sooty@proton.me>
Co-authored-by: glepnir <glephunter@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 943c67ac8e..97cda49a22 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -781,8 +781,8 @@ void nvim_set_vvar(String name, Object value, Error *err) /// can be omitted for no highlight. /// @param history if true, add to |message-history|. /// @param opts Optional parameters. -/// - verbose: Message was printed as a result of 'verbose' option -/// if Nvim was invoked with -V3log_file, the message will be +/// - verbose: Message is printed as a result of 'verbose' option. +/// If Nvim was invoked with -V3log_file, the message will be /// redirected to the log_file and suppressed from direct output. void nvim_echo(Array chunks, Boolean history, Dict(echo_opts) *opts, Error *err) FUNC_API_SINCE(7) |