aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.h
diff options
context:
space:
mode:
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);