aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-11-21 12:35:51 +0000
committernyamatongwe <unknown>2002-11-21 12:35:51 +0000
commit80a672aa76c64c58f5a7571879b83e1e44cd2db6 (patch)
treef3b69c94fcefff4ff2b0828a740940b9d0b96fb6 /src/AutoComplete.h
parent882b4355011c56f17284981bab13ed74ed395284 (diff)
downloadscintilla-mirror-80a672aa76c64c58f5a7571879b83e1e44cd2db6.tar.gz
Patch from Biswa to add icons to autocompletion lists.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r--src/AutoComplete.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h
index 622a5666e..7983e3611 100644
--- a/src/AutoComplete.h
+++ b/src/AutoComplete.h
@@ -15,6 +15,7 @@ class AutoComplete {
char stopChars[256];
char fillUpChars[256];
char separator;
+ char typesep; // Type seperator
public:
bool ignoreCase;
@@ -48,6 +49,10 @@ public:
void SetSeparator(char separator_);
char GetSeparator();
+ /// The typesep character is used for seperating the word from the type
+ void SetTypesep(char separator_);
+ char GetTypesep();
+
/// The list string contains a sequence of words separated by the separator character
void SetList(const char *list);