We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72fe322 commit fd4e94eCopy full SHA for fd4e94e
1 file changed
lua/fzf-lua/actions.lua
@@ -93,6 +93,7 @@ M.vimcmd_file = function(vimcmd, selected, opts)
93
end
94
if entry.ctag or entry.line>1 or entry.col>1 then
95
if entry.ctag then
96
+ vim.api.nvim_win_set_cursor(0, {1, 0})
97
vim.fn.search(entry.ctag, "W")
98
else
99
vim.api.nvim_win_set_cursor(0, {tonumber(entry.line), tonumber(entry.col)-1})
0 commit comments