Is it possible configure Execute (Ctrl + E) to run only current statements within / (GO)?

by Nov 11, 2015

According to documentation www.aquafold.com/support_faq.html ADS use / and GO command separation.

Suppose I have next script:

{code}
SELECT 1;
/

SELECT 2;
SELECT 3;
/

SELECT 4;
{code}

When I press Ctrl + Enter on any line starts from SELECT, executed just this line. Even on "SELECT 2;". If my cursor there, and I try execute (Ctrl + E) then all 4 statements will be executed.

Is there any possibility execute "SELECT 2; SELECT 3;", aka "current part"?
For example squirell-sql by default have such behaviour to execute multiple statements not separated by empty lines.