Files
yattee/Yattee/Core/FileCommands.swift
2026-02-08 18:33:56 +01:00

23 lines
505 B
Swift

//
// FileCommands.swift
// Yattee
//
// Menu bar commands for file operations.
//
import SwiftUI
#if !os(tvOS)
/// File-related menu bar commands.
struct FileCommands: Commands {
var body: some Commands {
CommandGroup(replacing: .newItem) {
Button(String(localized: "menu.file.openLink")) {
NotificationCenter.default.post(name: .showOpenLinkSheet, object: nil)
}
.keyboardShortcut("o", modifiers: [.command])
}
}
}
#endif