Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,12 @@ When `true` (default), configuration files are stored in your workspace's `.vsco
5. **Edit in VS Code** with full preprocessing support
6. **Save** to sync changes back to the viewer

### Linux-specific instructions
If using the flatpak version of vscode, the External Script Editor command is:
```
/usr/bin/flatpak run --file-forwarding com.visualstudio.code --reuse-window @@ "%s" @@
```

---

## Additional Features
Expand Down
2 changes: 1 addition & 1 deletion data/syntax_def_default.json
Original file line number Diff line number Diff line change
Expand Up @@ -18590,4 +18590,4 @@
],
"version": "1.0.0"
}
}
}
4 changes: 2 additions & 2 deletions src/shared/luadefsgenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class LuauDefsGenerator {
// Split classes into those that depend on type aliases and those that don't
const baseClasses: ClassDeclaration[] = [];
const dependentClasses: ClassDeclaration[] = [];

if (defs.classes && defs.classes.length > 0) {
for (const cls of defs.classes) {
if (this.classUsesTypeAliases(cls)) {
Expand Down Expand Up @@ -305,7 +305,7 @@ export class LuauDefsGenerator {
}

lines.push('}');

return `${callSig} & ${lines.join('\n')}`;
}

Expand Down
Loading