catacomb/.vscode/launch.json
Luna 3f611849af docs: rename yt-offline → Catacomb across README, ROADMAP, guides, packaging
Prose + commands updated to the new name: brand reads "Catacomb", while
binary/path/package references are the lowercase `catacomb` (commands, deb/rpm
names, ~/.local/share/catacomb, catacomb.db, catacomb.desktop). Codeberg repo
URLs left pointing at the existing repo. Also folds in the pending doc edits
from earlier in the session.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 03:34:18 -07:00

31 lines
No EOL
852 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug executable 'catacomb'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"run",
"--bin=catacomb"
]
},
"args": []
},
{
"name": "Debug unit tests in executable 'catacomb'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"test",
"--bin=catacomb"
]
}
}
]
}