Michael Heath
Michael Heath
@ArkadiuszMichalski I have gone into "Settings" -> "Preferences" -> "Auto-Completion" and checked "Function completion" and so unchecks "Function and word completion". This autocomplete is case sensitive sorted. Added commit to...
Downloaded latest Notepad++.x64.Release.exe from the [artifacts](https://ci.appveyor.com/project/donho/notepad-plus-plus/builds/45788877/job/kgvnec01fmqrp75p/artifacts) page and personally confirm as good as expected. Before fixes:  Fails: * List is not case insensitve. * Autocomplete automatically closes once `c`...
> Luckily, I verified that the multi-lines regex, in free-spacing mode, works correctly in the Find, Replace and Mark dialogs ! https://github.com/notepad-plus-plus/notepad-plus-plus/blob/11f7ba2e0a80dae890c5162a92635d6c6151af64/PowerEditor/src/ScintillaComponent/FindReplaceDlg.cpp#L4165 sets **extended** mode and affects **Find**: * `case...
@guy038 > I **re**-read your answer **carefully** and, indeed, you're perfectly right about this bug. I know about the symptoms of the fix. The actual bug that caused the fix...
@alankilborn This code excerpt does the automatic switch to *Extended* search mode https://github.com/notepad-plus-plus/notepad-plus-plus/blob/13dfaa96a8b224b000d470184ecae7a05057be45/PowerEditor/src/ScintillaComponent/FindReplaceDlg.cpp#L4205-L4208 which is within the `combo2ExtendedMode` function of the fix. Revert the fix will remove the transformation of...
Based on @alankilborn last posted script [CommentsToggleVisible.py](https://github.com/notepad-plus-plus/notepad-plus-plus/issues/12458#issuecomment-1548265493) * Added more languages. * Commented out `SCE_P_TRIPLE` in the dictionary as it is a string that is used like a comment, a...
@Coises > 1. Previously, Scintilla copied multiple selections to the clipboard back-to-back, with no intervening line endings, making them indistinguishable in the clipboard from a copied stream selection. > 2....
@Coises > Ctrl lets you make multiple selections, why doesn’t Ctrl+Alt let you make multiple selections in virtual space? Quick answer, not implemented it seems. Longer answer read on. Alt...
If use Shift key with Ctrl key then it does go into virtual space. So the Ctrl+Alt might be unneeded to achieve the solution asked for in the OP. If...
PowerShell `start` is alias for [Start-Process](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/start-process?view=powershell-7.4). Common Partial Syntax: ```ps1 Start-Process [-FilePath] [[-ArgumentList] ] ``` `ArgumentList` can be a string of arguments or an array of arguments. If a string...