From 87eb958869c549739a7111fc9ddc0cf39b61e69a Mon Sep 17 00:00:00 2001 From: fish Date: Wed, 15 Jul 2026 23:39:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A2=84=E7=BD=AE=E5=BF=AB?= =?UTF-8?q?=E6=8D=B7=E6=8C=87=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Note/NoteAppShortcuts.swift | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Note/NoteAppShortcuts.swift diff --git a/Note/NoteAppShortcuts.swift b/Note/NoteAppShortcuts.swift new file mode 100644 index 0000000..4cf7a55 --- /dev/null +++ b/Note/NoteAppShortcuts.swift @@ -0,0 +1,20 @@ +// +// NoteAppShortcuts.swift +// Note +// +// Created by Kimi Code CLI on 2026/7/15. +// + +import AppIntents + +struct NoteAppShortcuts: AppShortcutsProvider { + + static var appShortcuts: [AppShortcut] { + AppShortcut( + intent: SaveClipIntent(), + phrases: ["保存剪贴板到 ${applicationName}"], + shortTitle: "保存剪贴板", + systemImageName: "doc.text" + ) + } +}