mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
25 lines
606 B
Rust
25 lines
606 B
Rust
use std::borrow::Cow;
|
|
|
|
use crate::{diagnostic::LanguageServerId, Transaction};
|
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
|
pub struct CompletionItem {
|
|
pub transaction: Transaction,
|
|
pub label: Cow<'static, str>,
|
|
pub kind: Cow<'static, str>,
|
|
/// Containing Markdown
|
|
pub documentation: String,
|
|
pub provider: CompletionProvider,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
|
|
pub enum CompletionProvider {
|
|
Lsp(LanguageServerId),
|
|
Path,
|
|
}
|
|
|
|
impl From<LanguageServerId> for CompletionProvider {
|
|
fn from(id: LanguageServerId) -> Self {
|
|
CompletionProvider::Lsp(id)
|
|
}
|
|
}
|