[feat] `Cargo.toml` tab-completion enhancement
loynoir opened this issue · 1 comments
loynoir commented
Is your feature request related to a problem? Please describe.
Better manage Cargo.toml
without human typing, just use tab-completion.
Describe the solution you'd like
[dependencies]
foobar = { version = "<Tab></Tab>" }
Currently, the version tab-completion candidate is
-
""
-
"*"
Suggest
-
search cargo for
foobar
versions -
Use these versions as tab-completion candidate
-
If there are >=30 versions, and if consider harmful for UI performance, only show the latest of each major version.
[dependencies]
foobar = { version = "1.2.3", features = [<Tab></Tab>] }
Currently, the features element tab-completion candidate is
- None
Suggest
-
search cargo for
foobar@1.2.3
features -
Use these features as tab-completion candidate
Describe alternatives you've considered
Additional context
loynoir commented
Mistake.