Skip to content

Commit 14ea6f6

Browse files
authored
Merge pull request #671 from ahoppen/ahoppen/update-capabilities
Update capability definitions to LSP 3.17
2 parents a4c7688 + 975286d commit 14ea6f6

File tree

7 files changed

+540
-70
lines changed

7 files changed

+540
-70
lines changed

Sources/LanguageServerProtocol/SupportTypes/CodeActionKind.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public struct CodeActionKind: RawRepresentable, Codable, Hashable {
2121
self.rawValue = rawValue
2222
}
2323

24+
/// Empty kind.
25+
public static let empty: CodeActionKind = CodeActionKind(rawValue: "")
26+
2427
/// QuickFix action, such as FixIt.
2528
public static let quickFix: CodeActionKind = CodeActionKind(rawValue: "quickfix")
2629

0 commit comments

Comments
 (0)