Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Having problem pasting concatenated data #2998

Closed
jackanory101 opened this issue Mar 27, 2025 · 1 comment
Closed

Having problem pasting concatenated data #2998

jackanory101 opened this issue Mar 27, 2025 · 1 comment

Comments

@jackanory101
Copy link

jackanory101 commented Mar 27, 2025

I cannot paste URL and time (or URL and anything).

copyq:

var mimeType = 'text/x-moz-url-priv';
var url = str(data(mimeType));
var clip_time = 'application/x-copyq-user-copy-time';
var time = str(data(clip_time));
//var combined = time + " " + url
var combined = url + " " + time
popup('concat',combined)
copy(combined)
focusPrevious()
paste()
hide()

In the above, the popup shows concat string fine.

If I concat time first, then URL, it pastes fine.

However, if I concat URL first and then time (or anything next), paste does not work. It only pastes the URL.

I suspect there's something at the end of the URL that's preventing paste of entire concat string. But I don't know how to go about troubleshooting this.

Please help!


CopyQ
Clipboard Manager
9.1.0

Win10


Later:

Using Nirsoft Inside Clipboard I was able to view clipboard contents as hexdump showing that text/x-url-moz-private was UTF16 encoded with null terminator.

I now remove null terminator when storing latter url when copying text in browser as:

[Command]
Name=Copy URL when format incl text/x-moz-url-priv
Command="
    copyq:

    var mimeType = 'text/x-moz-url-priv';

    if (hasClipboardFormat(mimeType)) {
        var url = str(clipboard(mimeType)).replace(/\\x00/g,\"\")
        setData('text/x-moz-url-priv', url);
    }
    "
Automatic=true

I realize I should not have posted this in issues but in discussions. Perhaps you can move it there? Thanks for a fine piece of software by the way.

@hluk hluk removed the bug label Apr 2, 2025
@hluk
Copy link
Owner

hluk commented Apr 2, 2025

I don't think I can do anything about the null character in the app itself - it is just how the concatenation in the scripting engine works.

@hluk hluk closed this as completed Apr 2, 2025
Repository owner locked and limited conversation to collaborators Apr 2, 2025
@hluk hluk converted this issue into discussion #3002 Apr 2, 2025

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants