summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index f7d79ae..cbcc466 100644
--- a/ted.h
+++ b/ted.h
@@ -379,6 +379,9 @@ typedef struct {
bool open; // is the autocomplete window open?
bool waiting_for_lsp;
+ // which trigger character invoked this (0 if autocomplete was manually invoked)
+ char32_t trigger_char;
+
Autocompletion *completions; // dynamic array of all completions
u32 *suggested; // dynamic array of completions to be suggested (indices into completions)
BufferPos last_pos; // position of cursor last time completions were generated. if this changes, we need to recompute completions.