Home > Mobile >  How do I hide the "Run | Debug" above main() text in vscode?
How do I hide the "Run | Debug" above main() text in vscode?

Time:09-14

I normally run my application from the terminal directly so this text just adds a bit of noise. Any idea how to remove it?

enter image description here

CodePudding user response:

Set rust-analyzer.lens.run.enable and rust-analyzer.lens.debug.enable to false. Note this will also disable lens on tests.

  • Related