summaryrefslogtreecommitdiff
path: root/lsp.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-28 17:23:28 -0500
committerpommicket <pommicket@gmail.com>2022-12-28 17:23:28 -0500
commitdc8d64a02d99368d2a66cff6caf5a18de3f06bd2 (patch)
treea8a35ac6551d03d1ba97960d2ea61d02722f9548 /lsp.h
parent29c5c9b7544243a161d403b66ddfa11b6cdbbcf6 (diff)
better signature help
Diffstat (limited to 'lsp.h')
-rw-r--r--lsp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lsp.h b/lsp.h
index c078820..02cbbc7 100644
--- a/lsp.h
+++ b/lsp.h
@@ -251,7 +251,6 @@ typedef struct {
typedef struct {
LSPString label;
- LSPString documentation;
// NOTE: LSP gives us parameter information for *all*
// parameters, but we only really need it for the active parameter.
@@ -259,8 +258,6 @@ typedef struct {
// part of it should be highlighted for the active parameter
u16 active_start;
u16 active_end;
- // documentation for the active parameter
- LSPString active_documentation;
} LSPSignatureInformation;
typedef struct {