diff options
author | pommicket <pommicket@gmail.com> | 2022-12-30 21:49:05 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-30 21:49:05 -0500 |
commit | f69275faee4cd3045389a98fefefb0c683757a5c (patch) | |
tree | c7b0e5cfe59205554e3b5fc5410d3bff9fe89599 /ted.h | |
parent | a997d4106a397c785473bec5862c91bdf49f06ee (diff) |
start document highlights
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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; |