Randy Fellmy
Randy Fellmy
@mpheath > Check with SciTE as still does copy multiple selections to the clipboard back-to-back, Notepad++ inserts CRLF between multiple selections and adds `MSDEVColumnSelect`. SciTE only uses `MSDEVColumnSelect` with a...
@mpheath > `SCVS_RECTANGULARSELECTION` as the Notepad++ set default allows "_cursor in virtual space_" so I do not see a reason for a request unless want `SCVS_NONE` as new Notepad++ default...
@mkupper > Notepad++, including prior to v8.6, also supports `Alt+click` which works like a regular click and it also allows for positioning the text cursor or caret in the empty...
Just a note, for what it might be worth: When I added sort functions to [Columns++](https://github.com/Coises/ColumnsPlusPlus), my purpose was to deal with the fact that Notepad++ sort with a rectangular...
> > does it make more sense to simply replace the existing lexicographic sort with a locale-sensitive sort, or add a new locale-sensitive sort > > I'm sure if the...
@molsonkiko Just a guess; from WinNls.h: ``` // Sort digits as numbers (ie: 2 comes before 10) #if (WINVER >= _WIN32_WINNT_WIN7) #define SORT_DIGITSASNUMBERS 0x00000008 // use digits as numbers sort...
@molsonkiko Hmmm... I see: `10.0` in [Notepad++](https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/visual.net/notepadPlus.vcxproj#L34) and in your fork. Is it possible you have something different on your development machine? (It is also possible that I don't know...
@molsonkiko Check the setting @rdipardo illustrated _in the development environment where you couldn't compile_ using `SORT_DIGITSASNUMBERS`. If that doesn't explain it, follow `LINGUISTIC_IGNORECASE` to WinNls.h (right-click and choose `Go To...
This is default Scintilla behavior, and it has always been the behavior when pasting a rectangular selection into a single, empty stream selection (i.e., “nothing selected”): the selection is inserted,...
There was a recent [Community post](https://community.notepad-plus-plus.org/topic/26929/) about this. It happens because [SCI_SCROLLRANGE](https://www.scintilla.org/ScintillaDoc.html#SCI_SCROLLRANGE) is used [here](https://github.com/notepad-plus-plus/notepad-plus-plus/blob/299d7cb26ef30df4c21d6c9378be4f87c1c7ef7d/PowerEditor/src/ScintillaComponent/FindReplaceDlg.cpp#L238) to scroll the found text into view horizontally. That function does the minimum horizontal scrolling...