clipmenu

Simple clipboard management using dmenu
git clone https://git.sinitax.com/cdown/clipmenu
Log | Files | Refs | README | LICENSE | sfeed.txt

commit ea3ccea514d4fbd0c2d396b9a39ed14bf3c1edd8
parent 879854975ed93bb88a375ec36cf448da06a89820
Author: Chris Down <chris@chrisdown.name>
Date:   Mon, 23 Mar 2020 16:01:11 +0000

clipmenud: Mention selection used for possible partials

Diffstat:
Mclipmenud | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clipmenud b/clipmenud @@ -213,8 +213,8 @@ while true; do possible_partial=${last_data[$selection]} if [[ $possible_partial && $data == "$possible_partial"* ]] || [[ $possible_partial && $data == *"$possible_partial" ]]; then - info "Last clip was a possible partial, removing line cache entry" - debug "$possible_partial is a possible partial of $data" + info "Last clip for $selection was a possible partial, removing line cache entry" + debug "$selection: $possible_partial is a possible partial of $data" previous_size=$(wc -c <<< "${last_cache_file_output[$selection]}") truncate -s -"$previous_size" "$cache_file"