You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
store_clip maintains a single last_text and last_text_time across all
selections. If clipboard and primary both receive text in quick
succession, a clip arriving on one selection could be incorrectly
identified as a partial of the most recent clip on a different selection
and replace it rather than being stored as a new entry.
This may not be a problem in practice, but it's certainly weird. Let's
track the last text and timestamp independently per selection index so
that partial-merge comparisons are only ever made within the same
selection.
0 commit comments