We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8773198 commit b3da6b4Copy full SHA for b3da6b4
language-server/src/main/java/com/as3mxml/vscode/ActionScriptServices.java
@@ -913,6 +913,13 @@ public CompletableFuture<List<InlayHint>> inlayHint(InlayHintParams params) {
913
}
914
915
private List<InlayHint> inlayHint2(InlayHintParams params, CancelChecker cancelToken) {
916
+ if ("none".equals(inlayHints_parameterNames_enabled)) {
917
+ if (cancelToken != null) {
918
+ cancelToken.checkCanceled();
919
+ }
920
+ return Collections.emptyList();
921
922
+
923
// make sure that the latest changes have been passed to
924
// workspace.fileChanged() before proceeding
925
if (realTimeProblemsChecker != null) {
0 commit comments