mirror of
https://github.com/open-goal/jak-project
synced 2026-08-11 03:26:33 -04:00
lsp: improve LSP IR2 hovers (#1891)
Some new hover features: docstrings (`@param/@return` syntax is not yet supported, nor is a syntax-highlighted preview, will do later)  better MIPs instruction descriptions  numeric hovers convert to different bases / tell you the OpenGOAL method id (i can't tell you the amount of times ive done -16 / 4 manually myself...)  Closes https://github.com/open-goal/opengoal-vscode/issues/33 Closes https://github.com/open-goal/opengoal-vscode/issues/31 Related to https://github.com/open-goal/opengoal-vscode/issues/29
This commit is contained in:
+1
-1
@@ -92,7 +92,7 @@ int main(int argc, char** argv) {
|
||||
for (const auto& response : responses.value()) {
|
||||
std::cout << response.c_str() << std::flush;
|
||||
if (appstate.verbose) {
|
||||
lg::trace("<<< Sending message: {}", response);
|
||||
lg::debug("<<< Sending message: {}", response);
|
||||
} else {
|
||||
lg::info("<<< Sending message of method '{}'", method_name);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user