We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc4ff83 commit 68ccf69Copy full SHA for 68ccf69
1 file changed
Copilot for Xcode/LaunchAgentView.swift
@@ -90,6 +90,23 @@ struct LaunchAgentView: View {
90
TextField("node", text: $nodePath)
91
.textFieldStyle(.copilot)
92
}
93
+
94
+ HStack {
95
+ Button(action: {
96
+ Task {
97
+ let workspace = NSWorkspace.shared
98
+ let url = Bundle.main.bundleURL
99
+ .appendingPathComponent("Contents")
100
+ .appendingPathComponent("XPCServices")
101
+ .appendingPathComponent("CopilotForXcodeExtensionService.app")
102
+ workspace.activateFileViewerSelecting([url])
103
+ }
104
+ }) {
105
+ Text("Reveal Extension App in Finder")
106
107
108
+ Spacer()
109
110
111
112
.buttonStyle(.copilot)
0 commit comments