Skip to content

Commit 16dc2fb

Browse files
committed
[completion] Enable server-side filtering by default
1 parent bbb2a34 commit 16dc2fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/LanguageServerProtocol/SupportTypes/SKCompletionOptions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public struct SKCompletionOptions: Codable, Hashable {
2323
/// The maximum number of completion results to return, or `nil` for unlimited.
2424
public var maxResults: Int?
2525

26-
public init(serverSideFiltering: Bool = false, maxResults: Int? = 200) {
26+
public init(serverSideFiltering: Bool = true, maxResults: Int? = 200) {
2727
self.serverSideFiltering = serverSideFiltering
2828
self.maxResults = maxResults
2929
}

0 commit comments

Comments
 (0)