-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improve readme a bit more #1906
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,24 +11,33 @@ command line tools in Go featuring: | |
- commands and subcommands with alias and prefix match support | ||
- flexible and permissive help system | ||
- dynamic shell completion for `bash`, `zsh`, `fish`, and `powershell` | ||
- `man` and markdown format documentation generation | ||
- input flags for simple types, slices of simple types, time, duration, and others | ||
- no dependencies except Go standard library | ||
- input flags for simple types, slices of simple types, time, duration, and | ||
others | ||
- compound short flag support (`-a` `-b` `-c` can be shortened to `-abc`) | ||
- documentation generation in `man` and Markdown (supported via the | ||
[`urfave/cli-docs`][urfave/cli-docs] module) | ||
- input lookup from: | ||
- environment variables | ||
- plain text files | ||
- [structured file formats supported via the `urfave/cli-altsrc` package](https://github.com/urfave/cli-altsrc) | ||
- structured file formats (supported via the | ||
[`urfave/cli-altsrc`][urfave/cli-docs] module) | ||
|
||
## Documentation | ||
|
||
See the hosted documentation website at <https://cli.urfave.org>. Contents of | ||
this website are built from the [`./docs`](./docs) directory. | ||
|
||
## Q&A | ||
## Support | ||
|
||
Please check the [Q&A discussions] or [ask a new question]. | ||
Check the [Q&A discussions]. If you don't find answer to your question, [create | ||
a new discussion]. | ||
|
||
## License | ||
If you found a bug or have a feature request, [create a new issue]. | ||
|
||
Please keep in mind that this project is run by unpaid volunteers. | ||
|
||
### License | ||
|
||
See [`LICENSE`](./LICENSE). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. License in important. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. facts re-added |
||
|
||
|
@@ -41,4 +50,7 @@ See [`LICENSE`](./LICENSE). | |
[codecov_badge]: https://codecov.io/gh/urfave/cli/branch/main/graph/badge.svg?token=t9YGWLh05g | ||
[codecov_link]: https://codecov.io/gh/urfave/cli | ||
[Q&A discussions]: https://github.com/urfave/cli/discussions/categories/q-a | ||
[ask a new question]: https://github.com/urfave/cli/discussions/new?category=q-a | ||
[create a new discussion]: https://github.com/urfave/cli/discussions/new?category=q-a | ||
[urfave/cli-docs]: https://github.com/urfave/cli-docs | ||
[urfave/cli-altsrc]: https://github.com/urfave/cli-altsrc | ||
[create a new issue]: https://github.com/urfave/cli/issues/new/choose |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Less is more. Too much water on obvious things makes people skip what is really important.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed.
But I think this makes sense – for questions, go to discussion. For problems/requests, go to issues.
And label
kind/question
would be a no-op.