summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-30 23:39:27 -0500
committerpommicket <pommicket@gmail.com>2022-12-30 23:39:27 -0500
commit25f6cd6f5ffb9ff34d9e22c38e9d72cdadce2dc9 (patch)
tree7f731a4098bd08fb0a301b3dfad7159a1a589374 /ted.h
parent43bd0763959ecd8f8a835d09190b55ba6fab7d67 (diff)
basic find usages
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;