bergercookie / asm-lsp

Language server for NASM/GAS/GO Assembly
https://crates.io/crates/asm-lsp
BSD 2-Clause "Simplified" License
269 stars 18 forks source link

fix: Remove last uses of Some(json!("")) #113

Closed WillLillis closed 3 months ago

WillLillis commented 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.