Skip to content

Instantly share code, notes, and snippets.

@idanblich
Last active February 22, 2019 12:38
Show Gist options
  • Save idanblich/64a301eeea785a8a3156c7796ada7a31 to your computer and use it in GitHub Desktop.
Save idanblich/64a301eeea785a8a3156c7796ada7a31 to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"label": "SFDX: Open Visualforce Page",
"type": "shell",
"command": "sfdx",
"args": [
"force:org:open",
"--path",
"/apex/${fileBasenameNoExtension}",
],
"group": "build",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "SFDX: Open Lightning App",
"type": "shell",
"command": "sfdx",
"args": [
"force:org:open",
"--path",
"/c/${fileBasename}",
],
"group": "build",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment