GithubHelp home page GithubHelp logo

Counter Options about go-arg HOT 2 CLOSED

runeimp avatar runeimp commented on August 28, 2024
Counter Options

from go-arg.

Comments (2)

alexflint avatar alexflint commented on August 28, 2024

Hey @runeimp - thanks for the suggestion. This seems quite reasonable, but it also feels like it might only be used for the common "verbose" flag. I can't really think of another realistic use-case. I wonder if it would be better just to do it manually with something like

func main() {
  var verbose int
  for i, arg := range os.Args {
    if strings.TrimRight(arg, "v") == "-" {
      verbose = len(arg) - 1
      os.Args = append(os.Args[:i], os.Args[i+1:]...)
      break
    }
  }
  var args struct {
    ...
  }
  arg.MustParse(&args)
  ...
}

This seems like a reasonably small amount of code for the special case of "-v", whereas implementing the general version inside go-arg and covering all the corner cases feels like it would add quite a bit of complexity.

from go-arg.

runeimp avatar runeimp commented on August 28, 2024

I totally understand. I've seen it used in other places but verbosity is definitely the major use case. Thanks for the suggestion on how to work around it.

from go-arg.

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.