Michael Heath
Michael Heath
I have a possible working solution to this issue. As a feature of the fix, word completion inherits piximaps so it is known if the word matches a keyword or...
@donho The image that you display is the word completion. I find it ironic with functions, keywords and words in the image as visual evidence that I originally provided. >...
https://www.boost.org/doc/libs/1_80_0/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html#boost_regex.syntax.perl_syntax.unicode_escapes > \C Matches a single code point: in Boost regex this has exactly the same effect as a "." operator. `\C` is treated as `.` as documented by Boost...
Can be reproduced with this Python script executed from the root of a portable Notepad++ directory: ```py #!python3 import os os.mkdir('Håkan') tmp_dir = os.path.join(os.getcwd(), 'Håkan') os.environ['TMP'] = tmp_dir os.environ['TEMP'] =...
It is a Scintilla change. See https://sourceforge.net/p/scintilla/bugs/2410/ Committed Ctrl+Click to drop selection with [[3ca229]](https://sourceforge.net/p/scintilla/code/ci/3ca2299633c6ad7595bae095d6547f2f14b94f1d/). As a consequence, Ctrl+Drag a selection is more differcult now as your workaround suggests.
This option ``` cpp _pEditView->execute(SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR, _ignoreCase); ``` https://www.scintilla.org/ScintillaDoc.html#SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR tests as being better case insensitive behaviour with the matching in the autocomplete list. View this issue [comment](https://github.com/notepad-plus-plus/notepad-plus-plus/issues/12495#issuecomment-1365560810) regarding this option. It...
Initial commit sorts case insensitive functions and words. Second commit sets case insensitve behaviour. Third commit to sort case insensitive for functions. Word completion is still case sensitive sort. Please...
@ArkadiuszMichalski Nice observation. Certainly agree as it is being case sensitive sorted there so may as well do case insensitive sort there as needed which will eliminate the extra sorting...
> Now I have wrong behavior for list like this (set ActionScript): I will look into this. I may have to set `_ignoreCase` to `true` in this function for both...
> Change sorting is not better? We will have same order for `Word` and `Function and Word`. Functions are read from the xml and have a setting of `ignoreCase="yes"` or...