From 284e1936b8f14ca0b85f3deebe4fdb6393ed7357 Mon Sep 17 00:00:00 2001
From: Neil Last edited 5 September 2013 NH Last edited 7 September 2013 NH There is an overview of the internal design of
Scintilla. SCI_SETKEYWORDS(int keyWordSet, const char *keyWordList) SCI_SETIDENTIFIERS(int style, const char *identifiers)Scintilla Documentation
-
@@ -6051,8 +6051,8 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
SCI_SETPROPERTY will be performed before any numeric interpretation.
- You can set up to 9 lists of keywords for use by the current lexer. This was increased from 6
- at revision 1.50. keyWordSet can be 0 to 8 (actually 0 to KEYWORDSET_MAX)
+ You can set up to 9 lists of keywords for use by the current lexer.
+ keyWordSet can be 0 to 8 (actually 0 to KEYWORDSET_MAX)
and selects which keyword list to replace. keyWordList is a list of keywords
separated by spaces, tabs, "\n" or "\r" or any combination of these.
It is expected that the keywords will be composed of standard ASCII printing characters,
@@ -6114,7 +6114,8 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
For a secondary style, return the primary style, else return the argument.
- Similar to SCI_SETKEYWORDS but for substyles.SCI_SETKEYWORDS but for substyles.
+ The prefix feature available with SCI_SETKEYWORDS is not implemented for SCI_SETIDENTIFIERS.