We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use
Tested in VSCode with latest rls and Format on Save:
Format on Save
use crate::stuff; use failure::Error; use r2d2::ConnectionManager; use diesel::PgConnection;
becomes
use crate::stuff; use diesel::PgConnection; use r2d2::ConnectionManager;
This deleted an import. I have observed this behavior consistently on any set of mis-ordered imports.
The text was updated successfully, but these errors were encountered:
Couldn't reproduce this locally. This is probably due to a bug in VSCode extension. cc rust-lang/vscode-rust#595.
Sorry, something went wrong.
No branches or pull requests
Tested in VSCode with latest rls and
Format on Save
:becomes
This deleted an import.
I have observed this behavior consistently on any set of mis-ordered imports.
The text was updated successfully, but these errors were encountered: