kha.khaPath is not resolved correctly
kha.khaPath is not resolved correctly when you use it in the workspace settings file (PROJECT/.vscode/settings) AND when you try to do a launch build (F5).
Works ok in the user settings file or when building via target selector (> Compile Kha Project)
KS: windows 17.9.1
I think this comes from here, as it only looks in the .user section of the config and should probably be this.getConfiguration('kha.khaPath') or something?
https://github.com/Kode/KodeStudio/blob/master/src/vs/workbench/services/configuration/node/configuration.ts#L505
in my case kha.khaPath is ignored I added the value to PROJECT/.vscode/settings.json and to %appdata%/Roaming/Kode Studio/User/settings.json
but none of these worked and default version of kha is used KS 17.9.1 windows 7 x64
For user settings (the one in appdata) it should at least work if you use an absolute path say:
"kha.khaPath": "d:/dev/kode/kha",
Finally it worked. Seems that it was my fault... I have too many versions of kha installed =)
I usually just add it as submodule in my projects, so it's properly versioned and automatically picked up by KodeStudio. Takes some more space on the drives, but it's much less trouble imo.