update: tuiの文字入力のCtrlブロックを追加

This commit is contained in:
2026-05-03 00:44:38 +09:00
parent 261c682e5e
commit 2c86e64f19
5 changed files with 71 additions and 59 deletions
+2 -8
View File
@@ -619,20 +619,14 @@ impl App {
pub fn delete_char_after(&mut self) {
self.input.delete_after();
}
pub fn delete_word_before(&mut self) {
self.input.delete_word_before();
}
pub fn move_cursor_left(&mut self) {
self.input.move_left();
}
pub fn move_cursor_right(&mut self) {
self.input.move_right();
}
pub fn move_cursor_word_left(&mut self) {
self.input.move_word_left();
}
pub fn move_cursor_word_right(&mut self) {
self.input.move_word_right();
pub fn move_cursor_start(&mut self) {
self.input.move_start();
}
pub fn move_cursor_home(&mut self) {
self.input.move_home();