FIXED: [11.20b1] Another isssue with CTRL-Click

Post bug reports when testing beta versions here.
Post Reply
User avatar
vha
Posts: 1075
Joined: 27 Jun 2007 21:34
Location: Belgium

FIXED: [11.20b1] Another isssue with CTRL-Click

Post by vha »

- Have this text

Code: Select all

aa
bb
cc
dd
- Select line 1 and 2
- Ctrl-Click to also select line 4
- Ctrl-C to copy yo clipboard
- Set cursor past the last line, Ctrl-V

--> result:

Code: Select all

aa
bb
cc
dd
aa
bb

dd
--> an extra empty line is added

vha
User avatar
Rickard Johansson
Site Admin
Posts: 6577
Joined: 19 Jul 2006 14:29

Re: [11.20b1] Another isssue with CTRL-Click

Post by Rickard Johansson »

I can't reproduce it. How do you select the lines? Ctrl+Click to select - is that a click on the left margin?
User avatar
Rickard Johansson
Site Admin
Posts: 6577
Joined: 19 Jul 2006 14:29

Re: [11.20b1] Another isssue with CTRL-Click

Post by Rickard Johansson »

OK I figured it out. It seems different editors produce different results. Some, like SynWrite, does the exact same thing. Others do not.

They also produce different results when doing this:

Code: Select all

aa
bb|
cc
dd|
Select line 1 and 2 (with the cursor at the eol of line 2). Select line 4 the same way. Copy and paste past line 4.

In some editors the pasted result is

Code: Select all

aa
bb
dd
and in others

Code: Select all

aa
bbdd
I'm not sure what the correct behavior is but maybe all examples above should paste the text

Code: Select all

aa
bb
dd
User avatar
Rickard Johansson
Site Admin
Posts: 6577
Joined: 19 Jul 2006 14:29

Re: [11.20b1] Another isssue with CTRL-Click

Post by Rickard Johansson »

Fixed. Thanks!
Post Reply