blob: 129fb5e822f934702686d3285aea766628ddf62d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "LibLsp/lsp/symbol.h"
#include "LibLsp/JsonRpc/RequestInMessage.h"
#include "LibLsp/JsonRpc/lsResponseMessage.h"
/**
* The workspace symbol request is sent from the client to the server to
* list project-wide symbols matching the query string.
*
* Registration Options: void
*/
DEFINE_REQUEST_RESPONSE_TYPE(wp_symbol, WorkspaceSymbolParams, std::vector<lsSymbolInformation>, "workspace/symbol");
|