Could you provide concrete escape sequences (like an echo command, or a short text file to cat)?
I can't figure out how to test this. CSI is traditionally ESC + [. This is used e.g. to change the foreground color: echo -e '\x1B[31mred\x1B[0m' The CSI you're referring to seems to be an alternate encoding of the same functionality, starting with 0x9B (whose UTF-8 encoding is 0xC2 0x9B) instead of ESC [. That is: echo -e '\xC2\x9B31mred\xC2\x9B0m' but this doesn't work for me, not even in Putty or xterm. What am I doing wrong? Note: gnome-terminal tries to emulate xterm. If you're asking for something that is supported by xterm, you have reasonable chances. If the feature is specific to putty, it's unlikely that your request will get implemented. ** Package changed: gnome-terminal (Ubuntu) => vte3 (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1297051 Title: gnome-terminal doesn't recognise C1 controls To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vte3/+bug/1297051/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
