Last active
June 1, 2019 11:54
-
-
Save hluk/fa557274759b001fec7904bc0aa7a8a8 to your computer and use it in GitHub Desktop.
CopyQ Command: Paste multiple items separated by a blank line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Command=" | |
copyq: | |
hide() | |
var items = selectedItemsData() | |
var text = '' | |
for (var i in items) { | |
var itemText = str(items[i][mimeText]).trim() | |
text += itemText + '\\n\\n' | |
} | |
copy(text) | |
paste()" | |
Icon=\xf46d | |
InMenu=true | |
Name=Paste Separated | |
Shortcut=return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment