Julia VS Code extension version v0.16 released

Hi, same problem, where is an answer ?

You can only select and copy text in the hover pop-up (which works fine for me on Linux). The actual inline-result bubbles are unselectable.

Thanks for this quick answer ! The problem is with “large” arrays (~ more than 20 elements)

And about the title of this conversation (“v0.16 released” :-), Home · Julia in VS Code displays “Whats New Version v0.17 Version v0.16”… That said many thanks for this fantastic work.

I don’t think we have a good solution for that. You can just call clipboard on your object though. Or, if you want the normal display, something like

function show_clipboard(x)
    io = IOBuffer()
    show(io, "text/plain", x)
    clipboard(String(take!(io)))
end

We do have newer release threads:

Should just remove the “What’s new” section and point to the changelog, I suppose.

1 Like

Many thanks, your function show_clipboard() is magical !