Use clap
for helix-term
?
#8830
-
Currently a lot of stuff is self written for the cli in |
Beta Was this translation helpful? Give feedback.
Answered by
the-mikedavis
Nov 16, 2023
Replies: 1 comment 1 reply
-
No, clap is a really heavy dependency for something we already solve minimally: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
TornaxO7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, clap is a really heavy dependency for something we already solve minimally:
args.rs
is ~150 lines. We'd like to keep the number of CLI flags small since Helix is interactive so I don't think we need to invest into CLI flag parsing with any new crates.