fix: wire tui word navigation

This commit is contained in:
2026-06-03 09:22:50 +09:00
parent d0bdad58c2
commit cc98c0eb28
3 changed files with 154 additions and 7 deletions
+1 -7
View File
@@ -47,10 +47,8 @@ fn merge_usage(acc: &mut UsageEvent, new: &UsageEvent) {
pub trait ErasedHandler<K: Kind>: Send + Sync {
/// イベントをディスパッチ
fn dispatch(&mut self, event: &K::Event);
/// スコープを開始Block開始時)
/// スコープを開始
fn start_scope(&mut self);
/// スコープを終了(Block終了時)
fn end_scope(&mut self);
}
/// `Handler<K>`を`ErasedHandler<K>`として扱うためのラッパー
@@ -94,10 +92,6 @@ where
fn start_scope(&mut self) {
self.scope = Some(H::Scope::default());
}
fn end_scope(&mut self) {
self.scope = None;
}
}
// =============================================================================