Open
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -305,7 +305,9 @@ function Layout:sync_scroll()
end

-- Cursor will sometimes move +- the value of 'scrolloff'
api.nvim_win_set_cursor(target.id, cursor)
if target ~= nil then
api.nvim_win_set_cursor(target.id, cursor)
end
end

M.Layout = Layout
Expand Down