In Toad one can easily execute current line without highlighting it. Let say, you have a worksheet like this:
select * from item -- cursor here select * from p
For those who also wonder about the same thing, here is what you gotta do. End each statement with ; and it works.
;
select * from item ; select * from product;