Open
Description
Description of the new feature/enhancement
Let one define custom variables in settings.json for use with profiles.
E.g. define myCustomVariable for later use within commandline to avoid adding same long path to SSH key file for every profile name.
Would also be great to reuse current profile parameters such as "name" to connect to this hostname by stating $profile.name with SSH as shown in example.
Proposed technical implementation details (optional)
"profiles":
{
"defaults":
{
"myCustomVariable": "C:\\Users\\USERNAME\\SSH_KEY_FILE_PATH.key"
},
"list":
[
{
"name": "HOSTNAME",
"commandline": "ssh -i $myCustomVariable $profile.name",
},