Recently I've been learning rust language, and thus I installed rust-analyzer in VSCode. But when I wrote an incorrect code, there wasn't any error message until I pressed CTRL+S to save the file.
Before saving the file:
Does anyone know the method to show error message real-time without saving the file? Thanks very much!
rust-analyzer can only show certain errors on-the-fly, like syntax errors. The rest go through cargo check, which (I think?) requires the file to be saved. You can turn on autosave or learn to mash ctrl-s to get faster errors.
FYI just in case auto-save bites you later on, and you decide to disable it.... you might also consider mapping a keyboard shortcut to the Save All Files command. On my system, it doesn't appear to have a default mapping.