Gambit's default behavior is to switch thread after each REP in the repl. Is there a way to override this?

Thanks

(As an example, below I evaluate 1 2 3 4 in a sequence with two threads in the repl. Possibly something in the style of ,repl-stop-switching-between-threads 1 2 3 4 ,reset-repl-to-default-switching-mode could do it.

> 1
1
------------- REPL is now in #<thread #2> -------------
> 2
2
------------- REPL is now in #<thread #1 primordial> -------------
> 3
3
------------- REPL is now in #<thread #2> -------------
> 4
4
------------- REPL is now in #<thread #1 primordial> -------------
>

)