Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/completion.rs')
| -rw-r--r-- | helix-core/src/completion.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/completion.rs b/helix-core/src/completion.rs index c13b440c..29c86b73 100644 --- a/helix-core/src/completion.rs +++ b/helix-core/src/completion.rs @@ -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, } |