No, plugin doesn't have such feature.
Can you describe me how you see it?
By default plugin exports products by product's name.
If you need it now you can change the stored procedure FNS_FeedManager_ProductLoadAll
Example
select P.*
from Product P WITH (NOLOCK)
where P.Id in (select ProductId from #ExportProducts)
ORDER BY P.[Name] ASC