vfox 2026.5.11

Interface to vfox plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
--- Each SDK may have different environment variable configurations.
--- This allows plugins to define custom environment variables (including PATH settings)
--- @param ctx {path: string}  Context information (SDK installation directory)
function PLUGIN:EnvKeys(ctx)
    return {
        {
            key = "PATH",
            value = ctx.path .. "/bin",
        },
    }
end