mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Color swatches ( 🟩 green 🟥 #ffaaaa ) (#12308)
This commit is contained in:
parent
8ff544757f
commit
0ee5850016
11 changed files with 363 additions and 4 deletions
|
@ -356,6 +356,7 @@ impl Client {
|
|||
capabilities.inlay_hint_provider,
|
||||
Some(OneOf::Left(true) | OneOf::Right(InlayHintServerCapabilities::Options(_)))
|
||||
),
|
||||
LanguageServerFeature::DocumentColors => capabilities.color_provider.is_some(),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1095,6 +1096,25 @@ impl Client {
|
|||
Some(self.call::<lsp::request::InlayHintRequest>(params))
|
||||
}
|
||||
|
||||
pub fn text_document_document_color(
|
||||
&self,
|
||||
text_document: lsp::TextDocumentIdentifier,
|
||||
work_done_token: Option<lsp::ProgressToken>,
|
||||
) -> Option<impl Future<Output = Result<Vec<lsp::ColorInformation>>>> {
|
||||
self.capabilities.get().unwrap().color_provider.as_ref()?;
|
||||
let params = lsp::DocumentColorParams {
|
||||
text_document,
|
||||
work_done_progress_params: lsp::WorkDoneProgressParams {
|
||||
work_done_token: work_done_token.clone(),
|
||||
},
|
||||
partial_result_params: helix_lsp_types::PartialResultParams {
|
||||
partial_result_token: work_done_token,
|
||||
},
|
||||
};
|
||||
|
||||
Some(self.call::<lsp::request::DocumentColor>(params))
|
||||
}
|
||||
|
||||
pub fn text_document_hover(
|
||||
&self,
|
||||
text_document: lsp::TextDocumentIdentifier,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue