vtgl

terminal emulator implemented in OpenGL
git clone anongit@rnpnr.xyz:vtgl.git
Log | Files | Refs | Feed | LICENSE

Commit: 9cd19ebbaa828415dbbe2b6ed9d202fe3379b95f
Parent: d15eeddbee3ecbe59357ec371cc17a8ae6e3c7f1
Author: Randy Palamar
Date:   Sat, 21 Sep 2024 20:45:06 -0600

disable 8BIT character insertion for now

Diffstat:
Mvtgl.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/vtgl.c b/vtgl.c @@ -625,7 +625,8 @@ key_callback(GLFWwindow *win, i32 key, i32 sc, i32 act, i32 mods) /* NOTE: send control sequences */ if (mods & GLFW_MOD_CONTROL && act != GLFW_RELEASE) { - if (t->gl.mode & WIN_MODE_8BIT) { + /* TODO: this is wrong. look up where 8-bit mods should be sent */ + if (0 && t->gl.mode & WIN_MODE_8BIT) { if (key < 0x7F) { s8 enc = utf8_encode(key | 0x80); os_child_put_s8(t->child, enc);