We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83f7195 commit e0eeb2fCopy full SHA for e0eeb2f
1 file changed
lua/fzf-lua/utils.lua
@@ -1625,8 +1625,10 @@ end
1625
---@return boolean
1626
function M.jump_to_location(location, offset_encoding, reuse_win)
1627
if M.__HAS_NVIM_011 then
1628
- return vim.lsp.util.show_document(location, offset_encoding,
1629
- { reuse_win = reuse_win, focus = true })
+ return M.with({ o = { verbose = 0 } }, function()
+ vim.lsp.util.show_document(location, offset_encoding,
1630
+ { reuse_win = reuse_win, focus = true })
1631
+ end)
1632
else
1633
---@diagnostic disable-next-line: deprecated
1634
return vim.lsp.util.jump_to_location(location, offset_encoding, reuse_win)
0 commit comments