http://www.perlmonks.org?node_id=1180734


in reply to print from curses

grep for a clearscreen/clear/cls in the Curses::UI sourcetree ... maybe in MainLoop or in a destructor somewhere or an END block

http://grep.cpan.me/?q=dist%3ACurses-UI+clear -> https://metacpan.org/source/MDXI/Curses-UI-0.9609/Changes#L662

- Added the -clear_on_exit option to Curses::UI. If this option is set, a Curses::UI application will call "clear" on exit.

Replies are listed 'Best First'.
Re^2: print from curses
by morgon (Priest) on Feb 01, 2017 at 09:12 UTC
    clear_on_exit is documented (I don't know why you grep through the source) and it should be off by default.

    . I have already tried to turn it off explicitly but it does not help with my problem.

    should have mentioned that in my question, Sorry.