IDEAS (1003B)
1 * draw cursor as outline rectangle when window not active 2 * implement '!' command by just opening a separate terminal 3 * basic macros 4 * add different (more basic) text backend 5 * https://drewdevault.com/2021/06/27/You-cant-capture-the-nuance.html 6 * maybe somehow allow to define one keyboard layout that can be easily 7 be switched to and from - this would make typing commands easier 8 because they can't really be translated into other languages like the 9 key bindings 10 -> I'm not sure it that's even possible in a portable way, though, 11 since the keyboard layouts can be set in many different ways, so 12 the entire state would somehow have to be saved to restore it again. 13 -> Wouldn't it also make more sense to avoid the whole keyboard 14 configuration and instead just temporarily switch to the default 15 layout in order to map the keycodes to text? I'm not sure how to do 16 that, though. It might not be possible at all since text can also 17 be inserted through input methods.