Created
April 14, 2025 13:40
-
-
Save dfosco/9751b6527965208bb444a2bcb5cd87a2 to your computer and use it in GitHub Desktop.
Open on VSCode in Raycast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Open repository | |
# @raycast.mode silent | |
# Optional parameters: | |
# @raycast.icon 🛠️ | |
# @raycast.packageName coding | |
# @raycast.argument1 { "type": "text", "placeholder": "directory" } | |
cd ~/Workspace/$1; | |
code . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment