We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2eefc commit e2c6854Copy full SHA for e2c6854
Sources/LanguageServerProtocol/SupportTypes/SKCompletionOptions.swift
@@ -15,15 +15,10 @@
15
/// **(LSP Extension)**: This is used as part of an extension to the
16
/// code-completion request.
17
public struct SKCompletionOptions: Codable, Hashable {
18
- /// Whether to use server-side filtering or to return all results and let the
19
- /// client handle all filtering.
20
- public var serverSideFiltering: Bool
21
-
22
/// The maximum number of completion results to return, or `nil` for unlimited.
23
public var maxResults: Int?
24
25
- public init(serverSideFiltering: Bool = true, maxResults: Int? = 200) {
26
- self.serverSideFiltering = serverSideFiltering
+ public init(maxResults: Int? = 200) {
27
self.maxResults = maxResults
28
}
29
0 commit comments