Closed deanbarrow closed 3 years ago
This PR allows you to Shift+Enter to select multiple items to insert into the clipboard.
Shift+Enter
Useful for copying multiple items from a page and pasting them together in one go.
Credit to https://unix.stackexchange.com/a/140729 for awk 'NR>1{print PREV} {PREV=$0} END{printf("%s",$0)}'
awk 'NR>1{print PREV} {PREV=$0} END{printf("%s",$0)}'
Closing without prejudice due to lack of update, feel free to resubmit. Thanks.
This PR allows you to
Shift+Enter
to select multiple items to insert into the clipboard.Useful for copying multiple items from a page and pasting them together in one go.
Credit to https://unix.stackexchange.com/a/140729 for
awk 'NR>1{print PREV} {PREV=$0} END{printf("%s",$0)}'