Closed WillLillis closed 3 months ago
Related to #111
A few other places in the project return a response with Some(json!("")) rather than None for an empty result. This can cause Neovim at least (haven't tested with other editors) to display an error. Using None instead fixes this.
Some(json!(""))
None
Related to #111
A few other places in the project return a response with
Some(json!(""))
rather thanNone
for an empty result. This can cause Neovim at least (haven't tested with other editors) to display an error. UsingNone
instead fixes this.