Skip to content

Instantly share code, notes, and snippets.

@dfosco
Created April 14, 2025 13:40
Show Gist options
  • Save dfosco/9751b6527965208bb444a2bcb5cd87a2 to your computer and use it in GitHub Desktop.
Save dfosco/9751b6527965208bb444a2bcb5cd87a2 to your computer and use it in GitHub Desktop.
Open on VSCode in Raycast
#!/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