summaryrefslogtreecommitdiff
path: root/LiteEditor/context_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'LiteEditor/context_base.h')
-rw-r--r--LiteEditor/context_base.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/LiteEditor/context_base.h b/LiteEditor/context_base.h
index baa08f1a..3ea57d4d 100644
--- a/LiteEditor/context_base.h
+++ b/LiteEditor/context_base.h
@@ -75,6 +75,11 @@ public:
virtual ~ContextBase();
+ /**
+ * @brief return true if str is a string that should trigger a code completion
+ */
+ virtual bool IsStringTriggerCodeComplete(const wxString& str) const;
+
/**
* @brief when the context is requested to display a code completion for keywords
* this functions determines which keyword set to display ( there are up to 5, indexed from: 0-4)
@@ -82,10 +87,7 @@ public:
virtual int GetActiveKeywordSet() const {
return 0;
}
-
- const wxStringSet_t& GetCompletionTriggerStrings() const {
- return m_completionTriggerStrings;
- }
+
/**
* Return the context parent control
*/