I’m using Sublime Text with the LSP and LSP Rust Analyzer packages. I would like to disable Rust Analyzer’s Code Lens. I’ve already done this in settings:
// Settings in here override those in "LSP-rust-analyzer/LSP-rust-analyzer.sublime-settings"
{
"settings": {
"rust-analyzer.lens.enable": false,
}
}
And it works for the most part. It disables the “implementations” and “run | debug” features of Code Lens, but it does not remove the “quick fix” or “implement default members” items. Here are a few pictures of what I'm trying to remove (the blue text on the right):
Keep in mind these code actions only appear when my mouse has been clicked and my cursor is inside of these blocks. How may I disable all of Code Lens for Rust Analyzer on Sublime Text?