fix: nav_file column off by one

This commit is contained in:
w1ck3dg0ph3r 2024-08-29 09:15:07 +04:00
parent ccae1b9bec
commit ba09b9bccb
No known key found for this signature in database
GPG key ID: 508376B17E6F5DEB

View file

@ -195,7 +195,7 @@ function M.nav_file(id)
vim.api.nvim_set_current_buf(buf_id)
vim.api.nvim_buf_set_option(buf_id, "buflisted", true)
if set_row and mark.row and mark.col then
vim.cmd(string.format(":call cursor(%d, %d)", mark.row, mark.col))
vim.api.nvim_win_set_cursor(0, { mark.row, mark.col })
log.debug(
string.format(
"nav_file(): Setting cursor to row: %d, col: %d",