Files
jak-project/lsp/handlers/text_document/completion.h
T
Tyler Wilding 7dd716ded5 vscode: add snippets for supported ;; og:... comments (#1963)
Better documentation on what is supported / makes it faster to type them
without making mistakes.


![image](https://user-images.githubusercontent.com/13153231/195737915-1ed0fc15-e91d-4b35-a7df-0c31ebdc07d1.png)
2022-10-14 19:10:57 -04:00

16 lines
403 B
C++

#include <optional>
#include "lsp/protocol/common_types.h"
#include "lsp/protocol/completion.h"
#include "lsp/state/data/mips_instructions.h"
#include "lsp/state/workspace.h"
std::optional<json> get_completions_handler(Workspace& workspace, int id, json params) {
auto converted_params = params.get<LSPSpec::CompletionParams>();
// TODO - implement response object
return json::array();
;
}