We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a6bc8 commit 2cb56abCopy full SHA for 2cb56ab
Core/Sources/Service/Workspace.swift
@@ -92,7 +92,17 @@ final class Workspace {
92
], context: nil
93
)
94
95
- private var _suggestionService: SuggestionServiceType?
+ private var _suggestionService: SuggestionServiceType? {
96
+ didSet {
97
+ guard _suggestionService != nil else { return }
98
+ Task {
99
+ try await Task.sleep(nanoseconds: 1_000_000_000)
100
+ for (_, filespace) in filespaces {
101
+ notifyOpenFile(filespace: filespace)
102
+ }
103
104
105
106
107
private var suggestionService: SuggestionServiceType? {
108
// Check if the workspace is disabled.
0 commit comments