native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #61 from supabitapp/quick-tiger

Remove "(no shortcut)" from tooltip help texts

authored by

khoi and committed by
GitHub
b9b2cd89 eb4d7410

+16 -16
+5 -5
supacode/Features/Repositories/Views/RepositorySectionView.swift
··· 51 51 Button("Repo Settings") { 52 52 openRepoSettings() 53 53 } 54 - .help("Repo Settings (no shortcut)") 54 + .help("Repo Settings ") 55 55 Button("Remove Repository") { 56 56 store.send(.requestRemoveRepository(repository.id)) 57 57 } 58 - .help("Remove repository (no shortcut)") 58 + .help("Remove repository ") 59 59 .disabled(isRemovingRepository) 60 60 } 61 61 if isRemovingRepository { ··· 66 66 Button("Repo Settings") { 67 67 openRepoSettings() 68 68 } 69 - .help("Repo Settings (no shortcut)") 69 + .help("Repo Settings ") 70 70 Button("Remove Repository") { 71 71 store.send(.requestRemoveRepository(repository.id)) 72 72 } 73 - .help("Remove repository (no shortcut)") 73 + .help("Remove repository ") 74 74 .disabled(isRemovingRepository) 75 75 } label: { 76 76 Label("Repository options", systemImage: "ellipsis") ··· 78 78 .labelStyle(.iconOnly) 79 79 .buttonStyle(.plain) 80 80 .foregroundStyle(.primary) 81 - .help("Repository options (no shortcut)") 81 + .help("Repository options ") 82 82 .disabled(isRemovingRepository) 83 83 Button("New Worktree", systemImage: "plus") { 84 84 store.send(.createRandomWorktreeInRepository(repository.id))
+1 -1
supacode/Features/Repositories/Views/SidebarFooterView.swift
··· 14 14 Button("Help", systemImage: "questionmark.circle") { 15 15 } 16 16 .labelStyle(.iconOnly) 17 - .help("Help (no shortcut)") 17 + .help("Help") 18 18 SettingsLink { 19 19 Label("Settings", systemImage: "gearshape") 20 20 }
+1 -1
supacode/Features/Repositories/Views/WorktreeDetailView.swift
··· 142 142 .imageScale(.small) 143 143 .menuIndicator(.hidden) 144 144 .fixedSize() 145 - .help("Open in... (no shortcut)") 145 + .help("Open in...") 146 146 } 147 147 } 148 148
+1 -1
supacode/Features/Repositories/Views/WorktreeRow.swift
··· 30 30 Image(systemName: "bell.fill") 31 31 .font(.caption) 32 32 .foregroundStyle(.orange) 33 - .help("Unread notifications (no shortcut)") 33 + .help("Unread notifications") 34 34 .accessibilityLabel("Unread notifications") 35 35 } 36 36 if let shortcutHint {
+2 -2
supacode/Features/Repositories/Views/WorktreeRowsView.swift
··· 58 58 Button("Unpin") { 59 59 store.send(.unpinWorktree(worktree.id)) 60 60 } 61 - .help("Unpin (no shortcut)") 61 + .help("Unpin") 62 62 } else { 63 63 Button("Pin to top") { 64 64 store.send(.pinWorktree(worktree.id)) 65 65 } 66 - .help("Pin to top (no shortcut)") 66 + .help("Pin to top") 67 67 } 68 68 } 69 69 Button("Copy Path") {
+2 -2
supacode/Features/Settings/Views/NotificationsSettingsView.swift
··· 15 15 set: { store.send(.setInAppNotificationsEnabled($0)) } 16 16 ) 17 17 ) 18 - .help("Show bell icon next to worktree (no shortcut)") 18 + .help("Show bell icon next to worktree") 19 19 Toggle( 20 20 "Play notification sound", 21 21 isOn: Binding( ··· 23 23 set: { store.send(.setNotificationSoundEnabled($0)) } 24 24 ) 25 25 ) 26 - .help("Play a sound when a notification is received (no shortcut)") 26 + .help("Play a sound when a notification is received") 27 27 } 28 28 } 29 29 .formStyle(.grouped)
+1 -1
supacode/Features/Terminal/TabBar/Views/TerminalTabBarTrailingAccessories.swift
··· 18 18 } 19 19 20 20 private func helpText(_ title: String, shortcut: String?) -> String { 21 - guard let shortcut else { return "\(title) (no shortcut)" } 21 + guard let shortcut else { return title } 22 22 return "\(title) (\(shortcut))" 23 23 } 24 24 }
+1 -1
supacode/Features/Terminal/TabBar/Views/TerminalTabCloseButton.swift
··· 43 43 } 44 44 45 45 private func helpText(_ title: String, shortcut: String?) -> String { 46 - guard let shortcut else { return "\(title) (no shortcut)" } 46 + guard let shortcut else { return title } 47 47 return "\(title) (\(shortcut))" 48 48 } 49 49 }
+1 -1
supacode/Features/Terminal/TabBar/Views/TerminalTabView.swift
··· 52 52 isHovering = hovering 53 53 } 54 54 .zIndex(isActive ? 2 : (isDragging ? 3 : 0)) 55 - .help("Open tab \(tab.title) (no shortcut)") 55 + .help("Open tab \(tab.title)") 56 56 .accessibilityLabel(tab.title) 57 57 } 58 58 }
+1 -1
supacode/Features/Terminal/Views/WorktreeNotificationsListView.swift
··· 17 17 .frame(maxWidth: .infinity, alignment: .leading) 18 18 } 19 19 .buttonStyle(.plain) 20 - .help("Focus pane (no shortcut)") 20 + .help("Focus pane") 21 21 } 22 22 } 23 23 .frame(maxWidth: .infinity, alignment: .leading)