Ctrl-A selection

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-10-11 23:13:42 +03:00
parent 92dbad27ee
commit 58c5c2c6c4
3 changed files with 7 additions and 4 deletions

View File

@@ -335,6 +335,13 @@ auto App::init_wayland() -> void
handled = true;
}
break;
case XKB_KEY_a:
case XKB_KEY_A:
if (ctrl) {
app->m_kbd.typing.push_back('a');
handled = true;
}
break;
default:
break;
}