From a65938fb646f59cc729e880cdef2fd49b9b8d204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=AA=E3=82=AD=E8=90=8C?= Date: Tue, 26 Aug 2025 21:14:22 +0200 Subject: [PATCH] add a :tags command that takes you to /tags I couldn't think of a better place, yet --- static/js/command-line.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/static/js/command-line.js b/static/js/command-line.js index 162945b..9a472db 100644 --- a/static/js/command-line.js +++ b/static/js/command-line.js @@ -200,6 +200,16 @@ CommandLine.registerCommand({ }, }); +CommandLine.registerCommand({ + aliases: ["tags", "t"], + description: "view a list of all tags (I promise it's more interesting than you think)", + immediate: true, + + run() { + window.location = `${TREEHOUSE_SITE}/tag`; + }, +}); + CommandLine.registerCommand({ aliases: ["quit", "exit", "q", "q!", "wq", "wq!", "wqa", "wqa!", "bc", "bc!", "bca", "bca!"], description: "quit riki's treehouse (congration!)",