summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index 5acbba4..7a3dddd 100644
--- a/ted.h
+++ b/ted.h
@@ -437,6 +437,10 @@ typedef struct {
SymbolInfo *selector_all_definitions; // an array of all definitions
} Definitions;
+typedef struct {
+ LSPHighlight *highlights;
+ LSPRequestID last_request_id;
+} Highlights;
typedef struct Ted {
LSP *lsps[TED_LSP_MAX + 1];
@@ -494,6 +498,7 @@ typedef struct Ted {
SignatureHelp signature_help;
Hover hover;
Definitions definitions;
+ Highlights highlights;
FILE *log;