diff options
author | pommicket <pommicket@gmail.com> | 2022-12-30 23:39:27 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-30 23:39:27 -0500 |
commit | 25f6cd6f5ffb9ff34d9e22c38e9d72cdadce2dc9 (patch) | |
tree | 7f731a4098bd08fb0a301b3dfad7159a1a589374 /ted.h | |
parent | 43bd0763959ecd8f8a835d09190b55ba6fab7d67 (diff) |
basic find usages
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; |