https://github.com/jacksalici/args-converter
Simple script to convert Python commands to VS Code launch.json args, support also for Raycast
https://github.com/jacksalici/args-converter
argument raycast vscode vscode-debugging
Last synced: 5 months ago
JSON representation
Simple script to convert Python commands to VS Code launch.json args, support also for Raycast
- Host: GitHub
- URL: https://github.com/jacksalici/args-converter
- Owner: jacksalici
- Created: 2025-02-12T23:08:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-14T16:57:16.000Z (about 1 year ago)
- Last Synced: 2025-06-25T09:07:16.982Z (9 months ago)
- Topics: argument, raycast, vscode, vscode-debugging
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Args converter 🧳
**Converts arguments for VS Code' `launch.json` configurations like a breeze 🌬 , and copy them to clipboard 📋!**
Are you using Raycast? See down below for use the converter as a Raycast script!
## 📦 Installation
```bash
pip install -r requirements.txt
chmod +x converter.py
```
## 🚀 Usage
```bash
converter.py python3 test.py --this "/is" --a test
```
Output on `stdout` and _clipboard_:
```json
[
"--this",
"/is",
"--a",
"test"
]
```
### Raycast script ✨
If you use Raycast, you can use the converter as a script! Just select the cloned directory as the script directory in Raycast's settings, and you're good to go!