IntelliJ editing question: If editing a java file, is there a way to copy all the names and arguments of the method to the clipboard?
Something like that...
java.lang.String.length():int java.lang.String.charAt(int):char java.lang.String.codePointAt(int):int java.lang.String.codePointBefore(int):int java.lang.String.codePointCount(int, int):int java.lang.String.offsetByCodePoints(int, int):int
Copying from "Structure" copies all (or selected) method names .. but this does not include the class name.
source share