Is there a way in Idea to dump the content of a large - very - array of ints into the clipboard ?
\'copy value\' on an array return nothing.
To get the value in the clipboard using copy value, you need to define a "Java Data Type Renderer" to interpret the content of your array.
Arrays.toString(this)
.Ctrl-C
to get the content.