Specifically in the content of exporting org->latex->pdf when using pdftools to view the resulting pdf, how can I stop emacs from asking me if I want to revert the pdf buffer and instead just auto-revert without asking?
I tried:
(add-hook 'pdf-view-mode-hook (lambda () (auto-revert-mode 1)))
and also:
(add-hook 'pdf-tools-enabled-hook (lambda () (auto-revert-mode 1)))
But neither of these had an effect.