Add dual-pane batch processor with independent file state

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 17:41:25 +01:00
parent fe2c6445ef
commit 3264845e68
2 changed files with 80 additions and 4 deletions

View File

@@ -23,3 +23,10 @@ class AppState:
_main_rendered: bool = False
_live_checkboxes: dict = field(default_factory=dict)
_live_refreshables: dict = field(default_factory=dict)
def create_secondary(self) -> 'AppState':
return AppState(
config=self.config,
current_dir=self.current_dir,
snippets=self.snippets,
)