Full 'code' widget refactor to utilize controllers and cross controller event signaling

This commit is contained in:
2026-01-11 17:48:35 -06:00
parent 8253e250d8
commit c2060963cc
80 changed files with 1282 additions and 561 deletions

View File

@@ -0,0 +1,17 @@
# Python imports
from dataclasses import dataclass, field
# Lib imports
# Application imports
@dataclass
class CodeEvent:
ignore_focus: bool = False
view: any = None
file: any = None
next_file: any = None
buffer: any = None
response: any = None