@madmrmax said :
I noticed that N++ has its own editor command for move lines up or down
This seems irrelevant to the original problem description. Moving lines up or down isn’t related to extending a selection.
…try to use it rectangle extend, it only works the first time – you can’t extend more than two lines using the keyboard.
This actually sounds familiar, like it has been discussed before…
Ok, so there’s the Shortcut Mapper…
Then there’s also the concept that a user would never (!) change a common keycombo to be something else (gasp!). For a wild example, consider a user wanting to change Ctrl+c to not be “copy” (heresy!).
Most often, Notepad++ developers respect what is set by the Shortcut Mapper … but sometimes they disregard it and process hard-coded keycombos. I know, it sounds like a bad thing to do (and it is), but…the devs did it.
So for some “bad” stuff, have a look at the ScintillaEditView.cpp file in the Notepad++ source code repo. Search it for VK_ and you’ll see that it hard-processes some keys. Ideally, it would first use indirection to see what the user really has mapped, before doing what it’s going to.
It appears the offending code in this case has to do with column2MultSelect. If the code that processes this variable is removed (i.e., commented out), and Notepad++ is rebuilt and run, all seems to work fine with Ctrl+Shift+Alt+arrows used rather than Shift+Alt+arrows.
Given that we now know what to look for (we have insight!), we can see that uncheckmarking this setting will allow Ctrl+Shift+Alt+arrows to work:
3cded9ca-bce7-4a8f-8176-27e01f2e29c8-image.png