You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is not possible to set global settings in paths for code highlighting & compilation settings.
As example for i want: /.vscode/settings.json
"amxxpawn.compiler.includePaths": [
"${workspaceRoot}/hlds/cstrike/addons/amxmodx/scripting/include",
// Local folder with working AMXMODX & another default includes.
"${env:AMXX_PATH}/scripting/include"
]
The text was updated successfully, but these errors were encountered:
wopox1337
changed the title
Add support for (${env:VARIABLE})environment variables as paths.
Add support for (${env:VARIABLE}) environment variables as paths.
Mar 25, 2019
wopox1337
changed the title
Add support for (${env:VARIABLE}) environment variables as paths.
Add support for (${env:VARIABLE}) environment variables as paths in configuration.
Mar 25, 2019
@wopox1337 For what I read in this issue, VSCode doesn't have an API to expose a way to expand variables using the format ${env:<variable>}. Anyway one of the guys from the issue has created a package to add support for this: vscode-variables. That should do the work for this feature request.
Is not possible to set global settings in paths for code highlighting & compilation settings.
As example for i want:
/.vscode/settings.json
Now it's not works.
But, vscode supports them (Environment variables) in tasks.json as i know.
Configuration example:
as example, windows environment variables settings.
%AMXX_PATH% = F:\\hlds\\cstrike\\addons\\amxmodx
The text was updated successfully, but these errors were encountered: