File tree 1 file changed +3
-4
lines changed
src/tools/rust-analyzer/crates/rust-analyzer/src
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -1053,11 +1053,10 @@ impl GlobalState {
1053
1053
. on :: < NO_RETRY , lsp_request:: GotoDeclaration > ( handlers:: handle_goto_declaration)
1054
1054
. on :: < NO_RETRY , lsp_request:: GotoImplementation > ( handlers:: handle_goto_implementation)
1055
1055
. on :: < NO_RETRY , lsp_request:: GotoTypeDefinition > ( handlers:: handle_goto_type_definition)
1056
- // FIXME: This should not be tried as it contains offsets that can get outdated!
1057
- . on :: < RETRY , lsp_request:: InlayHintRequest > ( handlers:: handle_inlay_hints)
1058
- . on :: < RETRY , lsp_request:: InlayHintResolveRequest > ( handlers:: handle_inlay_hints_resolve)
1056
+ . on :: < NO_RETRY , lsp_request:: InlayHintRequest > ( handlers:: handle_inlay_hints)
1057
+ . on :: < NO_RETRY , lsp_request:: InlayHintResolveRequest > ( handlers:: handle_inlay_hints_resolve)
1059
1058
. on :: < NO_RETRY , lsp_request:: CodeLensRequest > ( handlers:: handle_code_lens)
1060
- . on :: < RETRY , lsp_request:: CodeLensResolve > ( handlers:: handle_code_lens_resolve)
1059
+ . on :: < NO_RETRY , lsp_request:: CodeLensResolve > ( handlers:: handle_code_lens_resolve)
1061
1060
. on :: < NO_RETRY , lsp_request:: PrepareRenameRequest > ( handlers:: handle_prepare_rename)
1062
1061
. on :: < NO_RETRY , lsp_request:: Rename > ( handlers:: handle_rename)
1063
1062
. on :: < NO_RETRY , lsp_request:: References > ( handlers:: handle_references)
You can’t perform that action at this time.
0 commit comments