Skip to content

Commit

Permalink
feat(turtlebot3_ws): Update vscode settings path for intellisense
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Jan 10, 2025
1 parent e1106bd commit 070b509
Show file tree
Hide file tree
Showing 6 changed files with 601 additions and 573 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_isaac_sim
1,142 changes: 571 additions & 571 deletions .vscode/settings.json

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ mkdocs serve
### Link Documentation to ROS2 Workspaces

```sh
scripts/setup_link.sh
scripts/setup_docs_link.sh
```

## VSCode Intellisense

If you have installed Isaac Sim 4.2.0 from [Omniverse Launcher](https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_workstation.html) to the default path `~/.local/share/ov/pkg/isaac-sim-4.2.0`, you can simply enable IntelliSense for editing any Isaac Sim scripts by running the following script:

```sh
scripts/setup_isaac_link.sh
```

## Reusing Docker Build Cache
Expand Down
10 changes: 9 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ mkdocs serve
### Link Documentation to ROS2 Workspaces

```sh
scripts/setup_link.sh
scripts/setup_docs_link.sh
```

## VSCode Intellisense

If you have installed Isaac Sim 4.2.0 from [Omniverse Launcher](https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_workstation.html) to the default path `~/.local/share/ov/pkg/isaac-sim-4.2.0`, you can simply enable IntelliSense for editing any Isaac Sim scripts by running the following script:

```sh
scripts/setup_isaac_link.sh
```

## Reusing Docker Build Cache
Expand Down
File renamed without changes.
11 changes: 11 additions & 0 deletions scripts/setup_isaac_link.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash -e

# Get the directory of this script.
# Reference: https://stackoverflow.com/q/59895
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)"

cd "$SCRIPT_DIR/.."

ln -s ~/.local/share/ov/pkg/isaac-sim-4.2.0 _isaac_sim

echo "Done."

0 comments on commit 070b509

Please sign in to comment.