You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tl;dr: rls used an unstable compiler api to provide rustc with the contents of the files as provided by the editor. Rust-analyzer doesn't use unstable api's, so it has to use cargo check, which requires the files to be saved on the disk.
Syntax errors and other diagnostics are already refreshed during editing. If you want the full rustc diagnostics set, you can save periodically, or you can configure your editor to save the files automatically (at the cost of some CPU usage).
Hi, I previously used rust official extension, it could always check / watch my editing .rs files and give results immediately.
After switch to rust-analyzer I lost this capability, always need "check on save"; it's not good for general users.
Is there a way to get always check function, or how to config/set to activate it?
The text was updated successfully, but these errors were encountered: