Skip to content

Commit

Permalink
fix: display global option help in data step (#1296)
Browse files Browse the repository at this point in the history
  • Loading branch information
scnwwu authored Nov 26, 2024
1 parent b3f8602 commit 4ebedf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/src/sas/CompletionProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1203,8 +1203,7 @@ export class CompletionProvider {
"datastep",
context.stmtName,
keyword,
cb,
);
); // always sync
if (help) {
_notify(cb, help);
} else {
Expand All @@ -1219,7 +1218,8 @@ export class CompletionProvider {
"DATA",
context.stmtName,
keyword,
); // always sync
cb,
);
}
}
break;
Expand Down

0 comments on commit 4ebedf0

Please sign in to comment.