Open davemilter opened 7 years ago
When your lib.rs/main.rs became fat enough, you split it into modules. And this is pain in ordinal editor, because of use.
lib.rs/main.rs
use
use std::
lib.rs
For example in java world some IDE if copy paste code automatically add necessary import and remove unnecessary.
import
It would be great to add such feature to rls
This is a sub feature of (semi)automatic application of regular suggestions
When your
lib.rs/main.rs
became fat enough, you split it into modules. And this is pain in ordinal editor, because ofuse
.use std::
fromlib.rs/main.rs
use
to part that stay inlib.rs
For example in java world some IDE if copy paste code automatically add necessary
import
and remove unnecessary.It would be great to add such feature to rls