Skip to content

Commit c7b0a68

Browse files
committed
add deprecated serverSideFiltering for backward compatibility
1 parent e4c2a3f commit c7b0a68

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Sources/LanguageServerProtocol/SupportTypes/SKCompletionOptions.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public struct SKCompletionOptions: Codable, Hashable {
1818
/// The maximum number of completion results to return, or `nil` for unlimited.
1919
public var maxResults: Int?
2020

21+
@available(*, deprecated, message: "Not used")
22+
public var serverSideFiltering: Bool = true
23+
2124
public init(maxResults: Int? = 200) {
2225
self.maxResults = maxResults
2326
}

0 commit comments

Comments
 (0)