fix: Zig run exe args not available

This commit is contained in:
FalsePattern 2024-05-15 17:58:33 +02:00
parent 4d63571590
commit 63a1b0c199
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
2 changed files with 4 additions and 1 deletions

View file

@ -22,6 +22,9 @@ Changelog structure reference:
- Debugging - Debugging
- The debugger no longer freezes the IDE while zig is compiling - The debugger no longer freezes the IDE while zig is compiling
- Project
- Exe args for zig run not visible in the GUI
## [14.2.0] ## [14.2.0]
### Added ### Added

View file

@ -75,7 +75,7 @@ public class ZigExecConfigRun extends ZigExecConfigBase<ZigExecConfigRun> {
@Override @Override
public @NotNull List<ZigConfigEditor.ZigConfigurable<?>> getConfigurables() { public @NotNull List<ZigConfigEditor.ZigConfigurable<?>> getConfigurables() {
return CollectionUtil.concat(super.getConfigurables(), filePath, optimization, colored); return CollectionUtil.concat(super.getConfigurables(), filePath, optimization, colored, exeArgs);
} }
@Override @Override