TermiT / Flycut

Clean and simple clipboard manager for developers
MIT License
2.49k stars 206 forks source link

When an item is used from the queue, it should get pushed back up to the top #61

Closed unixorn closed 10 years ago

unixorn commented 10 years ago

Currently, if Flycut is set to keep the last 5 items, and my queue looks like

a
b
c
d
e

and I copy a new item, f, it will push e out of queue, leaving

f
a
b
c
d

If I then select item 5 (d) and paste it somewhere, I'd like it to go back to the head of the queue, leaving

d
f
a
b
c

Basically, if I'm using an item in the clipboard queue more frequently, I don't want it to get churned out by items that I've pasted less frequently.

MarkJerde commented 10 years ago

Does "Move pasted item to top of stack" in the Preferences (pull request #21, merged two years ago) solve your need? https://github.com/TermiT/Flycut/pull/21

On Sep 17, 2014, at 1:03 PM, Joe Block notifications@github.com wrote:

Currently, if Flycut is set to keep the last 5 items, and my queue looks like

a b c d e and I copy a new item, f, it will push e out of queue, leaving

f a b c d If I then select item 5 (d) and paste it somewhere, I'd like it to go back to the head of the queue, leaving

d f a b c Basically, if I'm using an item in the clipboard queue more frequently, I don't want it to get churned out by items that I've pasted less frequently.

— Reply to this email directly or view it on GitHub.

unixorn commented 10 years ago

I'm using 1.5 from the App store and I don't see that in my preferences.

flycut-prefs-applestore-1 5

If there's a more recent build elsewhere, I'm happy to switch to that.

MarkJerde commented 10 years ago

You can just clone the source from GitHub and build it. That one on the App Store hasn't been updated in nearly three years (http://appshopper.com/mac/developer-tools/flycut-clipboard-manager) and seems pretty low priority to TermiT. He has continued to maintain the project well on GitHub.

On Sep 17, 2014, at 5:14 PM, Joe Block notifications@github.com wrote:

I'm using 1.5 from the App store and I don't see that in my preferences.

If there's a more recent build elsewhere, I'm happy to switch to that.

— Reply to this email directly or view it on GitHub.

unixorn commented 10 years ago

Thanks, @MarkJerde. I'll build from scratch then.