Chris Down

Results 178 comments of Chris Down

That's great, thank you very much! And thank you for all your help with clipmenu 7. Not long until release now :)

> when number of snips is 0, end - 1 will go one below the buffer Huh? `end - 1` is still within the buffer, that's the header. Could you...

Oh, I see. What do you think about just adjusting the original code with this in the *snip is NULL case: ```c if (start == end) { return false; }...

rofi-script is what I'm waiting on release for, I need to fix that up. Until then I'd rather not visibly show it as "removed", it's just pending.

If they are contiguous indexes they should not duplicate, that's handled by is_possible_partial. Could you give an example?

Yeah, these are not contiguous entries. This is actually intentional: one of the pieces of feedback from "old" clipmenu was that deduplication broke the sense of time of copying. In...

It means you have entries: ``` A B C D E ``` You then copy `B` again. In your suggestion, the new entries are: ``` A C D E B...

A config option is fine as long as it doesn't blow up the code complexity/size too much. Thanks!

This is a carryover from old clipmenu logic (in the old one we use `cksum`, not djb2, which has different properties). It's one of the blockers for clipmenu 8, and...