summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-30 21:49:05 -0500
committerpommicket <pommicket@gmail.com>2022-12-30 21:49:05 -0500
commitf69275faee4cd3045389a98fefefb0c683757a5c (patch)
treec7b0e5cfe59205554e3b5fc5410d3bff9fe89599 /ted.h
parenta997d4106a397c785473bec5862c91bdf49f06ee (diff)
start document highlights
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;