Hex editor, terminal text selection, F3 size calc, F3/F4 consolidation#16
Merged
bluestreak01 merged 5 commits intomasterfrom Apr 14, 2026
Merged
Hex editor, terminal text selection, F3 size calc, F3/F4 consolidation#16bluestreak01 merged 5 commits intomasterfrom
bluestreak01 merged 5 commits intomasterfrom
Conversation
F4 now auto-detects file type: parquet files open in parquet viewer, binary files open in hex viewer, and text files open in the editor. Removes the redundant F3 viewer (text viewer, hex/text toggle) since the editor and specialized viewers cover all use cases. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…pener Viewer consolidation: - F4 auto-detects file type: parquet → parquet viewer, binary → hex viewer, text → editor. Removes redundant F3 text viewer. - Deletes viewer.rs, viewer_view.rs, Action::ViewFile, AppMode::Viewing - Updates help dialog, footer bar, and hint bars Terminal text selection: - Click to position, drag to select, double-click word, triple-click line - Selected text highlighted with reverse video - Ctrl+C copies selection to clipboard Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Hex editor: - Cursor navigation (arrows, Home/End, PgUp/PgDn, mouse click) - Edit hex nibbles (0-F) and ASCII characters (Tab to switch) - Modifications overlay — only changed bytes in memory, in-place save - Undo/redo per-nibble (Ctrl+Z / Ctrl+Shift+Z) - Hex pattern search (F7) using shared search dialog, 1MB chunked scan - Go to offset (g) using shared goto dialog with hex input - Byte selection (Shift+arrows, Ctrl+A) with copy (Ctrl+C) - Data inspector: select 1/2/4/8 bytes for signed/unsigned/float in LE/BE - Cursor tracking between hex and ASCII panes - Unsaved changes prompt, F10 quit support - Zero-allocation render with pre-computed lookup tables - 117 unit tests covering all edge cases Terminal text selection (shell + claude panels): - Click-drag, double-click (word), triple-click (line) - Ctrl+C copies selection to clipboard (SIGINT when no selection) - Auto-copy on double/triple-click, deferred copy on drag Also: fix hex click separator bug, sort save writes, clippy/fmt clean. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- F3 on a directory starts async recursive size scan in background thread - Size column shows spinner while scanning, then actual size when done - F3 on multi-selection calculates all dirs in parallel, sums files immediately - F3 on files-only selection shows total in status bar - Pressing F3 again on a calculated dir re-scans (force refresh) - Calculated sizes persist until panel reload - Updated footer, help dialog, and README Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…tatus bar - Fix symlink cycle: use symlink_metadata, skip recursing into symlinked dirs - Cancel background threads on panel reload and F3 re-scan (AtomicBool flag) - Sort by size uses calculated dir sizes instead of metadata size (4096) - Auto re-sort when dir size calculation completes - Render status_message in footer bar (was set but never displayed) - Clear status_message on next user action - F3 on ".." calculates parent directory size Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
Hex Editor
F3 Size Calculation
Test plan
cargo test— 545 tests passcargo clippy— zero warningscargo fmt --check— clean🤖 Generated with Claude Code