mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
core: Make completion item documentation optional
Path completion items always have documentation but future core (i.e. non-LSP) completions may not always have documentation - for example word completion from the current buffer.
This commit is contained in:
parent
369f2bb93d
commit
70d452db3e
3 changed files with 6 additions and 3 deletions
|
@ -8,7 +8,7 @@ pub struct CompletionItem {
|
|||
pub label: Cow<'static, str>,
|
||||
pub kind: Cow<'static, str>,
|
||||
/// Containing Markdown
|
||||
pub documentation: String,
|
||||
pub documentation: Option<String>,
|
||||
pub provider: CompletionProvider,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue