Shortcut for 'cgc watch
(
path: str = typer.Argument(".", help="Path to watch"),
context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use"),
)
| 2417 | |
| 2418 | @app.command("w", rich_help_panel="Shortcuts") |
| 2419 | def watch_abbrev( |
| 2420 | path: str = typer.Argument(".", help="Path to watch"), |
| 2421 | context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use"), |
| 2422 | ): |
| 2423 | """Shortcut for 'cgc watch'""" |
| 2424 | watch(path, context=context) |
| 2425 | |
| 2426 | |
| 2427 | # ============================================================================ |