From 9b78ef47268fbf45c222a29948403edd9bdd2977 Mon Sep 17 00:00:00 2001 From: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Date: Wed, 4 Mar 2026 01:35:11 -0800 Subject: [PATCH] Add blog post: My Favorite Feature: Cmd+Shift+U (#852) * Add blog post about Cmd+Shift+U (Jump to Latest Unread) * Rewrite blog post to remove AI rhetorical patterns * Add video, trim post to two paragraphs --- web/app/blog/cmd-shift-u/page.tsx | 80 ++++++++++++++++++++++++++++++ web/app/blog/page.tsx | 7 +++ web/public/blog/cmd-shift-u.mp4 | Bin 0 -> 16881456 bytes 3 files changed, 87 insertions(+) create mode 100644 web/app/blog/cmd-shift-u/page.tsx create mode 100644 web/public/blog/cmd-shift-u.mp4 diff --git a/web/app/blog/cmd-shift-u/page.tsx b/web/app/blog/cmd-shift-u/page.tsx new file mode 100644 index 00000000..772de010 --- /dev/null +++ b/web/app/blog/cmd-shift-u/page.tsx @@ -0,0 +1,80 @@ +import type { Metadata } from "next"; +import Link from "next/link"; + +export const metadata: Metadata = { + title: "Cmd+Shift+U", + description: + "How Cmd+Shift+U navigates between finished agents across workspaces in cmux.", + keywords: [ + "cmux", + "terminal", + "macOS", + "notifications", + "AI coding agents", + "keyboard shortcuts", + "developer tools", + "workflow", + ], + openGraph: { + title: "Cmd+Shift+U", + description: + "How Cmd+Shift+U navigates between finished agents across workspaces in cmux.", + type: "article", + publishedTime: "2026-03-04T00:00:00Z", + url: "https://cmux.dev/blog/cmd-shift-u", + }, + twitter: { + card: "summary", + title: "Cmd+Shift+U", + description: + "How Cmd+Shift+U navigates between finished agents across workspaces in cmux.", + }, + alternates: { + canonical: "https://cmux.dev/blog/cmd-shift-u", + }, +}; + +export default function CmdShiftUPage() { + return ( + <> +
+ + ← Back to blog + +
+ +

Cmd+Shift+U

+ + +

+ My favorite cmux feature is Cmd+Shift+U. I have 17 + workspaces open right now, each running an agent. I used to click + through tabs and the notification panel to figure out what completed. + Typing is faster. +

+ +