Skip to content

Commit

Permalink
Merge pull request godotengine#40276 from Taywee/master
Browse files Browse the repository at this point in the history
remove invalid codeLensProvider value from lsp
  • Loading branch information
akien-mga authored Feb 25, 2021
2 parents f01e95e + 91ce8d5 commit ee5ea64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gdscript/language_server/lsp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,7 @@ struct ServerCapabilities {
signatureHelpProvider.triggerCharacters.push_back(",");
signatureHelpProvider.triggerCharacters.push_back("(");
dict["signatureHelpProvider"] = signatureHelpProvider.to_json();
dict["codeLensProvider"] = false; // codeLensProvider.to_json();
//dict["codeLensProvider"] = codeLensProvider.to_json();
dict["documentOnTypeFormattingProvider"] = documentOnTypeFormattingProvider.to_json();
dict["renameProvider"] = renameProvider.to_json();
dict["documentLinkProvider"] = documentLinkProvider.to_json();
Expand Down

0 comments on commit ee5ea64

Please sign in to comment.