Unverified Commit 683fb5c6 authored by Jean Tampon's avatar Jean Tampon Committed by GitHub

Adds windows configuration to VS code tasks (#963)

# Description

Currently, the tasks shipped with the VS code configuration only specify
Linux commands, which prevent the use of them on Windows. This MR adds
those tasks for Windows OS as well.

Fixes #962

## Type of change

- New feature (non-breaking change which adds functionality)

## Checklist

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there
parent dd22e7a6
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
"type": "shell", "type": "shell",
"linux": { "linux": {
"command": "${workspaceFolder}/isaaclab.sh -p ${workspaceFolder}/.vscode/tools/setup_vscode.py" "command": "${workspaceFolder}/isaaclab.sh -p ${workspaceFolder}/.vscode/tools/setup_vscode.py"
},
"windows": {
"command": "${workspaceFolder}/isaaclab.bat -p ${workspaceFolder}/.vscode/tools/setup_vscode.py"
} }
}, },
{ {
...@@ -17,6 +20,9 @@ ...@@ -17,6 +20,9 @@
"type": "shell", "type": "shell",
"linux": { "linux": {
"command": "${workspaceFolder}/isaaclab.sh --format" "command": "${workspaceFolder}/isaaclab.sh --format"
},
"windows": {
"command": "${workspaceFolder}/isaaclab.bat --format"
} }
} }
] ]
......
...@@ -41,6 +41,7 @@ Guidelines for modifications: ...@@ -41,6 +41,7 @@ Guidelines for modifications:
* Chenyu Yang * Chenyu Yang
* David Yang * David Yang
* HoJin Jeon * HoJin Jeon
* Jean Tampon
* Jia Lin Yuan * Jia Lin Yuan
* Jingzhou Liu * Jingzhou Liu
* Johnson Sun * Johnson Sun
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment