Dear all,
I might have just missed the option or setting, but is there a way to always copy and paste as plain text without any formatting applied?
Yours,
Robert
It might be possible to override normal paste shortcut with "Paste clipboard as plain text" command (it's available under Add button in Command dialog F6).
Perhaps more reliable way is to remove any HTML when copied with following command.
[Command]
Automatic=true
Command="
copyq:
if (dataFormats().indexOf(mimeHtml)) {
removeData(mimeHtml)
copy(mimeText, data(mimeText))
}"
Icon=\xf031
Input=text/plain
Name=Ignore HTML
This is really cool. Thank you, @hluk! :-)
@hluk, one last question:
Can the above command also only be applied to items selected from the tray icon?

You have to remove the HTML format before pasting it or paste it from application window with "Paste as Plain Text" command.
To remove HTML from all items in list:
copyq:removeData(mimeHtml) in Command field (leave other fields empty),Thanks for the addition, @hluk!
I have to do these steps manually, correct?
There is no way to apply this to all items in that tray icon list automatically?
The command at the top here creates new clipboard items without the HTML format so you only need to remove it from existing items once.
Thank you again!
I guess that is now all I needed. :-)
Most helpful comment
It might be possible to override normal paste shortcut with "Paste clipboard as plain text" command (it's available under Add button in Command dialog F6).
Perhaps more reliable way is to remove any HTML when copied with following command.