aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kunz <martinkunz@email.cz>2022-10-29 01:13:27 +0200
committerGitHub <noreply@github.com>2022-10-28 17:13:27 -0600
commit356244d50ba01c63b3ac33057a69462c4029612c (patch)
tree4b6f472464acc73af9b9789f9c0c276a979e2c0a
parent49e32cbdf8467ecb3da30e4a0d566341c7fa6f1f (diff)
downloadrneovim-356244d50ba01c63b3ac33057a69462c4029612c.tar.gz
rneovim-356244d50ba01c63b3ac33057a69462c4029612c.tar.bz2
rneovim-356244d50ba01c63b3ac33057a69462c4029612c.zip
fix(docs): nil as viable argument for goto_prev (#20852)
Added `nil` as a possible option to `vim.diagnostics.goto_prev` in the docs
-rw-r--r--runtime/doc/diagnostic.txt2
-rw-r--r--runtime/lua/vim/diagnostic.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/diagnostic.txt b/runtime/doc/diagnostic.txt
index 828093ddd4..d30d6c28a0 100644
--- a/runtime/doc/diagnostic.txt
+++ b/runtime/doc/diagnostic.txt
@@ -519,7 +519,7 @@ goto_prev({opts}) *vim.diagnostic.goto_prev()*
Move to the previous diagnostic in the current buffer.
Parameters: ~
- • {opts} (table) See |vim.diagnostic.goto_next()|
+ • {opts} (table|nil) See |vim.diagnostic.goto_next()|
hide({namespace}, {bufnr}) *vim.diagnostic.hide()*
Hide currently displayed diagnostics.
diff --git a/runtime/lua/vim/diagnostic.lua b/runtime/lua/vim/diagnostic.lua
index 84091fbf0e..af2d41bf7e 100644
--- a/runtime/lua/vim/diagnostic.lua
+++ b/runtime/lua/vim/diagnostic.lua
@@ -797,7 +797,7 @@ function M.get_prev_pos(opts)
end
--- Move to the previous diagnostic in the current buffer.
----@param opts table See |vim.diagnostic.goto_next()|
+---@param opts table|nil See |vim.diagnostic.goto_next()|
function M.goto_prev(opts)
return diagnostic_move_pos(opts, M.get_prev_pos(opts))
end