Giter Site home page Giter Site logo

Comments (4)

alecthomas avatar alecthomas commented on July 17, 2024

--help should currently be special cased to work in most locations, but it's possible there are some cases where it doesn't.

That said, I agree. What I would really like to do is be able to specify any flag for any command/subcommand at any point after the command. That is, if "foo" is a flag for command "foo" (ie. foo --foo) then --foo can also be specified to any sub-command of foo. eg. foo bar --foo. Additionally, --help for "bar" should display all ancestor commands and flags.

from kingpin.

xealot avatar xealot commented on July 17, 2024

Agree

from kingpin.

alecthomas avatar alecthomas commented on July 17, 2024

I'm not 100% sure this is possible in full.

Imagine this definition:

flag := kingpin.Flag("flag", "").String()
cmd := kingpin.Command("cmd" ,"")
arg := cmd.Arg("arg", "").String()
cmdFlag := cmd.Flag("cmdflag", "").String()

Given this command line:

cli --flag cmd

It's not really possible to determine whether the user meant cmd to be an argument to --flag, or the command cmd.

That said, this commit (3c91444) in the v2-unstable branch lets you specify flags at any point after their definition.

So in the example above one could do:

cli cmd --flag=foo --cmdflag=bar

I think that is probably sufficient, so I'm going to close this issue. Let me know what you think.

from kingpin.

xealot avatar xealot commented on July 17, 2024

While this definition is certainly challenging to program a parser for I don't know if it's ambiguous. If the Flag isn't a boolean flag that means it requires an argument so the next token on the stream would be the argument to the flag. This would consume "cmd" in your first example.

If the flag was a boolean it would not consume the next token on the stack and cmd would be interpreted as the subcommand.

from kingpin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.