On macOS Ventura, on a MacBook Air, with a fresh user account and default settings, in Terminal.app, I can run man less and then use my trackpad to scroll down the manpage -- equivalent to hitting j or down arrow.
In iTerm.app (3.4.18), man less displays the manpage, but "Mouse Reporting" does not become checked in the Session -> Terminal State menu, so scrolling with the trackpad down the page does nothing, and up goes into the terminal scrollback. Running man less | less --mouse activates mouse reporting, and I get the desired behavior (what happens in Terminal.app).
I believe that Terminal.app might be doing some magic to activate mouse capture for less without the additional explicit option. How does this work (i.e. what's different between the two shell instances), and how can I get the same behavior from iTerm.app?
One solution is to add export LESS='--mouse' to my .zshrc, but this doesn't answer my question of why I don't need this in Terminal.app.
