index
:
github.com/spf13/pflag.git
docs/contrib
forOgier
master
remove-type-from-value
reset-args-even-if-empty
Drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
flag.go
Age
Commit message (
Expand
)
Author
2015-02-17
Fix handling of -- termination
Andy Goldstein
2015-01-16
Add support for custom boolean flags through IsBoolFlag()
Filipe Brandenburger
2014-07-11
Adding Type() method to the values.
spf13
2014-06-27
Moving Value interface to the appropriate file
spf13
2014-06-27
Fixing issues so test pass again
spf13
2014-06-27
Merge branch 'master' of https://github.com/ogier/pflag
spf13
2014-04-02
Compatibility: commandLine -> CommandLine
Alec Thomas
2014-03-17
More data types. Each in a separate file.
Riobard
2014-03-16
Make reuse message more clear
Johannes Schickling
2013-11-12
adding changed flag on flag to track user set vs default
spf13
2013-11-05
Fixing bug where invalid trailing short flag would cause panic
spf13
2013-09-24
cleaning up and adding some functionality needed by cobra
spf13
2012-12-20
Merge pull request #2 from alecthomas/master
Alex Ogier
2012-12-20
Fix comment.
Alec Thomas
2012-12-20
Set interspersed behaviour via a setter.
Alec Thomas
2012-12-19
Add support for non-interspersed option/non-option args.
Alec Thomas
2012-12-19
Add missing VarP function for the default command line
Alex Ogier
2012-12-19
Merge changes from Go's standard flag library.
Alex Ogier
2012-05-09
Tighten up parsing to be less ambiguous, follow GNU conventions
Alex Ogier
2012-05-09
Add README
Alex Ogier
2012-05-07
Formatted with go fmt
Alex Ogier
2012-05-04
Fix up pflag's usage documentation, and reference GNU spec
Alex Ogier
2012-05-04
s/shortcut/shorthand/
Alex Ogier
2012-05-04
Document the spaceless shortcut argument format -Ifile
Alex Ogier
2012-05-04
Print defaults with nice spacing regardless of shortcuts
Alex Ogier
2012-05-04
Update package documentation for POSIX-style flags
Alex Ogier
2012-05-04
Nicer error message for undefined flags
Alex Ogier
2012-04-30
Mark flags as visited based on their name
Alex Ogier
2012-04-30
Rename package flag --> pflag
Alex Ogier
2012-04-30
Oops, allocate memory for arguments, don't set them to ""
Alex Ogier
2012-04-30
Allow -Ifile, -n3 style shorthand
Alex Ogier
2012-04-30
Print out usage in the proper POSIX format
Alex Ogier
2012-04-30
Modify flag parser to handle -shortcut and long --options
Alex Ogier
2012-04-26
Add Shortcut field to Flag, and *P() versions of flags that take shortcuts
Alex Ogier
2012-04-26
Copy the flag module from the go standard library
Alex Ogier