mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +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
|
@ -113,7 +113,7 @@ pub(crate) fn path_completion(
|
|||
kind: Cow::Borrowed(kind),
|
||||
label: file_name.into(),
|
||||
transaction,
|
||||
documentation,
|
||||
documentation: Some(documentation),
|
||||
provider: CompletionProvider::Path,
|
||||
}))
|
||||
})
|
||||
|
|
|
@ -523,7 +523,10 @@ impl Component for Completion {
|
|||
None => return,
|
||||
},
|
||||
CompletionItem::Other(option) => {
|
||||
markdowned(language, None, Some(&option.documentation))
|
||||
let Some(doc) = option.documentation.as_deref() else {
|
||||
return;
|
||||
};
|
||||
markdowned(language, None, Some(doc))
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue