You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Lukas Troyer (JIRA)" <ji...@apache.org> on 2018/04/06 07:46:00 UTC

[jira] [Created] (NETBEANS-614) Pasting whole lines causes insertion at wrong position

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: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists