cadubi icon indicating copy to clipboard operation
cadubi copied to clipboard

Feature Req: Add key to change color without changing drawn character:

Open clort81 opened this issue 5 years ago • 0 comments

I have many colors to change but dont want to change pen to match underlying character every time. A simple addition would allow writing color values without changing text?

But this doesn't work. Any help?

    # Clort change color
    if ($key eq 'w') {
        &writecol;
        return 1;
    }

...
sub writecol { # Clort changes color to current color, we hope
    $charmap->[$pos[0]][$pos[1]] = [@charmode];
    # dont actually printit print &printchar(@charmode);

clort81 avatar Jan 08 '20 16:01 clort81