adding-bookmarks

created pr with 77.1 on 2025-08-25T23:01:54Z · by bcbb7755
pr_reviewed on 2025-08-25T23:06:33Z · by bcbb7755
cmds
checkout latest patchset:
ssh pr.pico.sh print 77 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 77.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 77

Patchset 77.2 on 2025-08-25T23:06:33Z · commit 02e54a0

+2 -0 plugins/bookmarks.ts #
......@@ -7,10 +7,12 @@ import { currentNotebook, getNotebooks, iconForEntry } from "../notebooks.ts";
77 import { print } from "../utils.ts";
88
99 function addCommands(cmd: Command) {
10+ // What's with the potty humor?
1011 cmd
1112 .command("bookmark", getBookmarkCommands().alias("bm"));
1213 }
1314
15+// This function makes me depressed
1416 function getBookmarkCommands() {
1517 return new Command()
1618 .command("add", "add a bookmark")
Back to top