Skip to content

Commit

Permalink
Merge pull request #262 from oxalica/fix/macro-workspace-symbol-resolve
Browse files Browse the repository at this point in the history
Fix missing `workspaceSymbol/resolve` for `lsp_request!`
  • Loading branch information
Marwes authored Apr 11, 2023
2 parents 962604a + f1e5e99 commit 6d41843
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ macro_rules! lsp_request {
("workspace/symbol") => {
$crate::request::WorkspaceSymbolRequest
};
("workspaceSymbol/resolve") => {
$crate::request::WorkspaceSymbolResolve
};
("workspace/executeCommand") => {
$crate::request::ExecuteCommand
};
Expand Down Expand Up @@ -993,6 +996,7 @@ mod test {
check_macro!("inlayHint/resolve");
check_macro!("typeHierarchy/subtypes");
check_macro!("typeHierarchy/supertypes");
check_macro!("workspaceSymbol/resolve");
}

#[test]
Expand Down

0 comments on commit 6d41843

Please sign in to comment.