See https://sourceforge.net/p/scintilla/bugs/2445/ which is about the same problem (even though the title says MULTIPASTE), and has some more info.
Thanks!
Thanks, found it in 7-Zip's code 👍 Should we leave the new affinityGroup and affinityInGroup fields at 0?
Hi Igor, Thanks for the recent update! We are using LZMA SDK in our software (Inno Setup) and I was wondering if you have info on how to set numThreadGroups. I tried studying the 7-Zip source code to find the answer but was not succesful. Currently we set numBlockThreads_Max to the number specified by the user, and numThreadGroups is kept on 0. Should numThreadGroups simply be set to 2 if numBlockThreads_Max > 64, 3 if > 128, and 4 if > 192? Or do you advise something else? Thanks & greetings, M...
Hi Igor, Thanks for the recent update! We are using LZMA SDK in our software (Inno Setup) and I was wondering if you have info for on how to set numThreadGroups. I tried studying the 7-Zip source code to find the answer but was not succesful. Currently we set numBlockThreads_Max to the number specified by the user, and numThreadGroups is kept on 0. Should numThreadGroups simply be set to 2 if numBlockThreads_Max > 64, 3 if > 128, and 4 if > 192? Or do you advise something else? Thanks & greetings,...
Thanks for the super fast reply!
Hi Igor, may I ask which compiler you use to compile the official 32-bit 7z.dll and 7zxa.dll? I couldn't find this information. When I compile them with Visual Studio 2022 Community Edition myself the DLLs are approximately 90 kb bigger than the official ones.
I beleive my original patch has a small mistake making it so that doing SCI_LINEINDENT with the caret and anchor at the start of the same line does nothing. I think the fix might be to put a if (!lineIndent) check before this bit in Editor.cxx: if (pdoc->LineStart(lineBottomSel) == sel.Range(r).anchor.Position() || pdoc->LineStart(lineBottomSel) == caretPosition) lineBottomSel--; // If not selecting any characters on a line, do not indent Sorry for the inconvenience. Another potential issue is that...