Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update visual-studio-code.md #222

Open
wants to merge 1 commit into
base: 6.0.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 12 additions & 18 deletions ide-integrations/visual-studio-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,18 @@ When adding a path, follow the rules for adding platform specific path separator

### Commandbox and Shells of Choice

Install Shell Launcher and reload the IDE.

* [Shell Launcher](https://marketplace.visualstudio.com/items?itemName=Tyriar.shell-launcher) _Easily launch multiple shell configurations in the terminal._

Now open your user settings like is shown in the Commandbox only section just above. Add the following to your `USER SETTINGS`.

`//Shell launcher`\
`// A list of shell configurations for Windows`\
`"shellLauncher.shells.windows": [`\
`{`\
`"shell": "C:\\Windows\\sysnative\\cmd.exe",`\
`"label": "cmd"`\
`},`\
`{`\
`"shell": "/path/to/box",`\
`"label": "Commandbox"`\
`}`\
`],`
Open the terminal and select the `+

Open the command prompt ( CTRL + P Windows ) and enter `>Terminal: Configure Terminal Settings` to call up the correct settings editor. You may need to add this to get to the settings if you don't want to scroll.
`@feature:terminal integrated profiles windows`.

Click on `Edit in settings.json` and add the following to the setting and save. Then you should see an option to launch Commandbox in your terminal.

```
"Commandbox": {
"path": "C:\\dev\\tools\\box\\box.exe"
},
```

### Or loading it as desired

Expand Down