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
It would be pretty cool to have auto-imports (import suggestions).
Means e.g.
voidmain()
{
auto f = newFile|
}
Intellisense would now suggest File from std.stdio and automatically add import std.stdio; to the module as soon as one hits [Enter] or whatsoever to insert the suggested File.
Actually it's a pretty common feature and D is the only language I'm currently programming in that there's no implementation for this. Also manually specifing those imports is basically just busywork.
This would be my huge feature request for 2020…
The text was updated successfully, but these errors were encountered:
It would be pretty cool to have auto-imports (import suggestions).
Means e.g.
Intellisense would now suggest
File
fromstd.stdio
and automatically addimport std.stdio;
to the module as soon as one hits [Enter] or whatsoever to insert the suggestedFile
.Actually it's a pretty common feature and D is the only language I'm currently programming in that there's no implementation for this. Also manually specifing those imports is basically just busywork.
This would be my huge feature request for 2020…
The text was updated successfully, but these errors were encountered: