Skip to content

Commit 1540f93

Browse files
Add single quotes
Signed-off-by: Sanjula Ganepola <[email protected]>
1 parent 16ea703 commit 1540f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/server/src/providers/codeActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ function getIncludes(detail: RpgleTypeDetail, workspaceFolder: WorkspaceFolder):
247247
if (workspaceFolder) {
248248
const relativePath = asPosix(path.relative(workspaceFolder.uri, structPath));
249249
if (!includes.includes(relativePath)) {
250-
includes.push(`/include ${relativePath}`);
250+
includes.push(`/include '${relativePath}'`); // TODO: Support members style includes
251251
}
252252
}
253253
}

0 commit comments

Comments
 (0)