hackerb9
hackerb9
I agree that tmux and screen support would be useful. I don't want to add preliminary code, though. Does your code work if the "montage" command in lsix is piped...
For mlterm detection, I probably should just talk to the developers and ask them to fix their interpretation of SIXEL scrolling. That worked for MinTTY. For the situation with overwriting...
Wow! Great work. Did you handle different sized fonts?
Basename makes sense, although I think I'd put that in processlabel() which is designed to adaptively shorten long filenames. But why force the notofu font when not everyone will have...
One way you could do it is to have your local changes in a branch of your repository. Whenever you make a change you want to share, you could do...
I believe it is detecting the background color, but because you have reverse video turned on it is swapped. I think this is a bug in xterm, but I'll have...
I agree. However, I'm not sure there is a way to detect reversed video. I'll check into it again.
Good suggestion. Unfortunately, that won't catch all the ways reverse video can be enabled. For example, the -rv command line switch. Holding down control and clicking the mouse. There's even...
I'm detecting the colors using an escape sequence. Try this: $ IFS=$';\e' read -a fg -r -s -d "\\" -p $'\e]10;?\e\\' $ echo ${fg[2]} rgb:e5e5/e5e5/e5e5 $ IFS=$';\e' read -a bg...
I'm glad it works for you. I'll leave this bug open, though, until I get this resolved with the author of XTerm. You're unlikely to be the only person who...