We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e2679 commit b140270Copy full SHA for b140270
1 file changed
Copilot for Xcode/DebugView.swift
@@ -5,6 +5,8 @@ import SwiftUI
5
final class DebugSettings: ObservableObject {
6
@AppStorage(\.disableLazyVStack)
7
var disableLazyVStack: Bool
8
+ @AppStorage(\.preCacheOnFileOpen)
9
+ var preCacheOnFileOpen: Bool
10
init() {}
11
}
12
@@ -18,6 +20,10 @@ struct DebugSettingsView: View {
18
20
Text("Disable LazyVStack")
19
21
22
.toggleStyle(.switch)
23
+ Toggle(isOn: $settings.preCacheOnFileOpen) {
24
+ Text("Cache editor information on file open")
25
+ }
26
+ .toggleStyle(.switch)
27
28
}.buttonStyle(.copilot)
29
0 commit comments