From bd2fc92a257da4f630a9e55a6e4ac735e3a29470 Mon Sep 17 00:00:00 2001
From: nyamatongwe
Scintilla maintains a selection which stretches between two points, the anchor and the
@@ -652,7 +653,7 @@ SCI_INDICGETFORE(int indicatornumber)
Autocompletion
-SCI_AUTOCSHOW(int lenEntered;,char *list)
+SCI_AUTOCSHOW(int lenEntered,char *list)
SCI_AUTOCCANCEL
SCI_AUTOCACTIVE
SCI_AUTOCPOSSTART
@@ -691,6 +692,19 @@ SCI_AUTOCGETIGNORECASE
a false argument, the list is not cancelled until the caret moves before the first character of the
word being completed.
+SCI_USERLISTSHOW(int listType,char *list) ++
+ User lists are similar to auto completion but do not insert text when an item is selected, + instead notifying the container with a SCN_USERLISTSELECTION. + The listType parameter is returned to the container and + can be used to differentiate between different types of list such as between a list of + buffers and a list of keywords. +
+SCN_USERLISTSELECTION ++
+ User has selected an item in a user list. + The list type is available in wParam and the text chosen in text. +