Quickstart

comby Quickstart

javimosch Updated

File contents

comby Quickstart

Search for a pattern with holes:

sc comby code search "if :[condition] { :[body] }" --extensions .js,.ts --directory src/

Replace with named hole references:

sc comby code replace "console.log(:[msg])" "logger.info(:[msg])" --extensions .js --dry-run

Search in a specific directory:

sc comby code search ":[fn](:[args])" --directory lib/ --extensions .go --json

Apply replacements in-place:

sc comby code replace "let :[name] = :[val]" "const :[name] = :[val]" --extensions .js --in-place

javimosch/supercli/tree/main/plugins/comby/skills/quickstart commit a076e8f883

Frequently asked questions

npx skillmds@latest add javimosch/quickstart-389