diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 2 | ||||
| -rw-r--r-- | include/Scintilla.iface | 7 | 
2 files changed, 9 insertions, 0 deletions
| diff --git a/include/Scintilla.h b/include/Scintilla.h index 386271bbe..f0c041b6f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -246,6 +246,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCI_AUTOCGETDROPRESTOFWORD 2271  #define SCI_REGISTERIMAGE 2405  #define SCI_CLEARREGISTEREDIMAGES 2408 +#define SCI_AUTOCGETTYPESEPARATOR 2285 +#define SCI_AUTOCSETTYPESEPARATOR 2286  #define SCI_SETINDENT 2122  #define SCI_GETINDENT 2123  #define SCI_SETUSETABS 2124 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index dd4d2d37e..09f5aea91 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -591,6 +591,13 @@ fun void RegisterImage=2405(int type, string xpmData)  # Clear all the registered XPM images.  fun void ClearRegisteredImages=2408(,) +# Retrieve the auto-completion list type-separator character. +get int AutoCGetTypeSeparator=2285(,) + +# Change the type-separator character in the string setting up an auto-completion list. +# Default is '?' but can be changed if items contain '?'. +set void AutoCSetTypeSeparator=2286(int separatorCharacter,) +  # Set the number of spaces used for one level of indentation.  set void SetIndent=2122(int indentSize,) | 
