summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index 45a9531..41f7bbc 100644
--- a/ted.h
+++ b/ted.h
@@ -385,6 +385,12 @@ typedef struct {
} Autocomplete;
typedef struct {
+ LSPID last_request_lsp;
+ LSPRequestID last_request_id;
+ struct timespec last_request_time;
+} Usages;
+
+typedef struct {
// displayed normal
char *label_pre;
// displayed bold
@@ -502,6 +508,7 @@ typedef struct Ted {
Hover hover;
Definitions definitions;
Highlights highlights;
+ Usages usages;
FILE *log;