Shortcut for 'cgc index
(
path: Optional[str] = typer.Argument(None, help="Path to index"),
force: bool = typer.Option(False, "--force", "-f", help="Force re-index (delete existing and rebuild)"),
context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use")
)
| 2865 | |
| 2866 | @app.command("i", rich_help_panel="Shortcuts") |
| 2867 | def index_abbrev( |
| 2868 | path: Optional[str] = typer.Argument(None, help="Path to index"), |
| 2869 | force: bool = typer.Option(False, "--force", "-f", help="Force re-index (delete existing and rebuild)"), |
| 2870 | context: Optional[str] = typer.Option(None, "--context", "-c", help="Specific context to use") |
| 2871 | ): |
| 2872 | """Shortcut for 'cgc index'""" |
| 2873 | index(path, force=force, context=context) |
| 2874 | |
| 2875 | @app.command("ls", rich_help_panel="Shortcuts") |
| 2876 | def list_abbrev( |