diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2020-10-09 17:33:48 -0400 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2020-10-15 22:30:08 -0400 |
| commit | 5a7a3147a4553146342aeb5a112c72606367fea5 (patch) | |
| tree | 4e31dcbd41746c011ff681156aa50323ad680cd9 /lua/telescope/actions.lua | |
| parent | 18a91f27143628d732ae339b5df3996e3066fdb6 (diff) | |
fix: Use entry maker for marks
Diffstat (limited to 'lua/telescope/actions.lua')
| -rw-r--r-- | lua/telescope/actions.lua | 2 |
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 |
