Thanks!
main Alexey wrote: ↑04.03.2025 07:45
it is possible to filter out empty lines from selection block. in python if 'block' is list of lines, then
block = [s for s in block if s]
will filter out empty lines from 'block'.
can you adapt ExTerminal?