For my workflow it is essential to be able to quickly run a query and eventually fetch all the rows with a second command without editing the query. On sqldeveloper this is possible by fetching the first 50 rows which can be extended with ctrl+end.
The very best would be to have the same command as in sqldeveloper and a row count already on the first run, e.g., " retrieved 50 out of 23,456 rows."
I don't know if this is technically possible, but the minimum goal is not to have to change the max rows setting or be forced to use "fetch first 50 rows only" in every query and count(*) to know the number of rows.
Thanks!