Lukas Troyer created NETBEANS-614:
-------------------------------------
Summary: Pasting whole lines causes insertion at wrong position
Key: NETBEANS-614
URL: https://issues.apache.org/jira/browse/NETBEANS-614
Project: NetBeans
Issue Type: Improvement
Affects Versions: 8.2
Reporter: Lukas Troyer
| represents the cursor
{code:java}
// Example code
System.out.pri|ntln("Hello");
{code}
Pressing CTRL + C and CTRL + V causes this:
{code:java}
// Example code
System.out.priSystem.out.println("Hello");
|ntln("Hello");
{code}
But it should cause this:
{code:java}
// Example code
System.out.println("Hello");
|System.out.println("Hello");
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists