Support for ${userHome}
#11756
Labels
enhancement
Improvement to an existing feature
Feature: Configuration
An issue related to configuring the extension or IntelliSense
fixed
Check the Milestone for the release in which the fix is or will be available.
help wanted
Can be fixed in the public (open source) repo.
Language Service
quick fix
Milestone
Feature Request
You can find the official variables here: https://code.visualstudio.com/docs/editor/variables-reference
Currently the only what to make system independent configuration for
c_cpp_properties.json
is to use stuff like${env:HOME}/compiler/arm-none-eabi-gcc
. As you can see this isn't platform independent as it doesn't work on Windows,where the alternative would be
${env:USERPROFILE}/compiler/arm-none-eabi-gcc
.So please implement support for
${userHome}
as platform independent alias for the node.jshomedir()
:https://nodejs.org/api/os.html#oshomedir
The text was updated successfully, but these errors were encountered: