Color swatches ( 🟩 green 🟥 #ffaaaa ) (#12308)

This commit is contained in:
Nik Revenco 2025-03-23 21:07:02 +00:00 committed by GitHub
parent 8ff544757f
commit 0ee5850016
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 363 additions and 4 deletions

View file

@ -334,6 +334,7 @@ pub enum LanguageServerFeature {
Diagnostics,
RenameSymbol,
InlayHints,
DocumentColors,
}
impl Display for LanguageServerFeature {
@ -357,6 +358,7 @@ impl Display for LanguageServerFeature {
Diagnostics => "diagnostics",
RenameSymbol => "rename-symbol",
InlayHints => "inlay-hints",
DocumentColors => "document-colors",
};
write!(f, "{feature}",)
}