Add diagnostics pane and optimize with line indexing#9
Conversation
Co-authored-by: simwai <16225108+simwai@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
- Implement TUI diagnostic pane (Ctrl+D) for live event logging - Add -DiagPane and -DebugLog parameters - Optimize buffer offset-to-row logic with a binary-searched line-start index - Add mouse support for diagnostic pane resizing - Improved error handling for input and clipboard operations - Update README.md with new features Co-authored-by: simwai <16225108+simwai@users.noreply.github.com>
This change introduces a diagnostic system and performance optimizations to the babae TUI editor.
Key enhancements:
Ctrl+D. This provides real-time visibility into internal events (input handling, clipboard errors, etc.) without corrupting the main editor rendering.$script:lineIndex). This improves performance for large files by replacing O(n) scans with O(log n) lookups.-DiagPaneand-DebugLogparameters to the main script.All buffer mutation points (Enter, Backspace, Delete, Tab, Paste, printable characters) have been updated to maintain the line-start index. Existing Pester tests pass, and the new logic has been manually verified for correctness.
PR created automatically by Jules for task 7894184619913533842 started by @simwai