feat: add min-length filter and history deduplication#6
Open
dupenodi wants to merge 1 commit into
Open
Conversation
Add two configurable history filters to address noise from modal editors: - Minimum text length: entries shorter than the threshold (default: 1, configurable 1–20) are silently dropped before being written to history. - Deduplication: when enabled, copying an identical inline text entry promotes the existing item to the top instead of inserting a duplicate. Both settings are exposed in a new "History" section in Preferences and persisted via UserDefaults through SettingsManager. Co-Authored-By: Claude Sonnet 4.6 <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.
Closes #4
Summary
Addresses noise in clipboard history caused by modal editors (Vim, Emacs) that yank individual characters or repeated fragments on incremental deletions. Two new opt-in settings are added under Preferences → History:
ClipboardWatcher.)Both settings persist via
UserDefaultsthroughSettingsManager.Changes
Services/SettingsManager.swiftminTextLengthanddeduplicateHistoryproperties + persistenceServices/ClipboardWatcher.swiftminTextLengthbefore adding to storeServices/ClipboardStore.swiftperformAdd, promote duplicate inline text to top when dedup is onViews/SettingsView.swiftStepperand aToggle; frame height bumped to 400Test plan
🤖 Generated with Claude Code