summaryrefslogtreecommitdiff
path: root/lua/telescope/actions.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/telescope/actions.lua')
-rw-r--r--lua/telescope/actions.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/actions.lua b/lua/telescope/actions.lua
index 4b15c93..ebebbea 100644
--- a/lua/telescope/actions.lua
+++ b/lua/telescope/actions.lua
@@ -110,7 +110,7 @@ local function goto_file_selection(prompt_bufnr, command)
if row and col then
local ok, err_msg = pcall(a.nvim_win_set_cursor, 0, {row, col})
if not ok then
- log.debug("Failed to move to cursor:", err_msg)
+ log.debug("Failed to move to cursor:", err_msg, row, col)
end
end
end