(ctx *snap.Context)
| 1690 | } |
| 1691 | |
| 1692 | func runOpenLookingBack(ctx *snap.Context) error { |
| 1693 | if ctx.NArgs() != 0 { |
| 1694 | fmt.Fprintf(ctx.Stderr(), "Usage: %s openLookingBack\n", commandName) |
| 1695 | return fmt.Errorf("expected 0 arguments, got %d", ctx.NArgs()) |
| 1696 | } |
| 1697 | |
| 1698 | return openDoc(ctx, docSpecs["looking-back"]) |
| 1699 | } |
| 1700 | |
| 1701 | func runOpenSqlite(ctx *snap.Context) error { |
| 1702 | if ctx.NArgs() != 0 { |