diff --git a/doc/trouble.nvim.txt b/doc/trouble.nvim.txt index e89ac88a..4c1a298e 100644 --- a/doc/trouble.nvim.txt +++ b/doc/trouble.nvim.txt @@ -1,4 +1,4 @@ -*trouble.nvim.txt* For Neovim Last change: 2024 July 22 +*trouble.nvim.txt* For Neovim Last change: 2024 October 02 ============================================================================== Table of Contents *trouble.nvim-table-of-contents* @@ -571,11 +571,21 @@ API ~ ---@return trouble.View require("trouble").jump_split(opts) + -- Open the item in a split and close the trouble window + ---@param opts? trouble.Mode | { new? : boolean } | string + ---@return trouble.View + require("trouble").jump_split_close(opts) + -- Open the item in a vsplit ---@param opts? trouble.Mode | { new? : boolean } | string ---@return trouble.View require("trouble").jump_vsplit(opts) + -- Open the item in a vsplit and close the trouble window + ---@param opts? trouble.Mode | { new? : boolean } | string + ---@return trouble.View + require("trouble").jump_vsplit_close(opts) + -- Go to the last item ---@param opts? trouble.Mode | { new? : boolean } | string ---@return trouble.View