fix: remove redundant hardwrap in preview panel causing extra newlines - #7
Merged
Merged
Conversation
Greptile OverviewGreptile SummaryThis PR includes multiple changes beyond the preview fix mentioned in the title: Main Fix (Preview Panel)
Feature Additions
Database Changes
The changes are well-structured and follow Go conventions. The cost tracking implementation correctly calculates deltas to avoid double-counting. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant TUI
participant Monitor
participant Store
participant Usage
Note over TUI,Monitor: Preview Fix (main change)
User->>TUI: View session preview
TUI->>TUI: Capture pane content
TUI->>TUI: Truncate lines instead of hardwrap
TUI->>User: Display preview without extra newlines
Note over Monitor,Store: Daily Cost Tracking (feature addition)
loop Every 5 poll cycles
Monitor->>Usage: GetSessionByID(workingDir, sessionID)
Usage-->>Monitor: SessionUsage with EstimatedCost
Monitor->>Monitor: Calculate cost delta
alt delta > 0
Monitor->>Store: AddToDailyCost(delta)
Store->>Store: UPDATE daily_stats SET daily_cost += delta
end
Monitor->>Monitor: Update lastCosts map
end
Note over TUI,Store: Daily Cost Display
loop Every 25 ticks
TUI->>Store: GetTodayStats()
Store-->>TUI: DailyStats with DailyCost
TUI->>TUI: Update dailyCost display
TUI->>User: Show COST in header
end
Note over User,TUI: Clipboard Paste (feature addition)
User->>TUI: Press ctrl+v in prompt mode
TUI->>TUI: readClipboard() (pbpaste/xclip)
TUI->>TUI: InsertString(clip)
TUI->>User: Pasted content in prompt
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.