-
Notifications
You must be signed in to change notification settings - Fork 0
chore: use charmbracelet/fang
#54
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
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 hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -6,15 +6,22 @@ toolchain go1.24.3 | |
|
|
||
| require ( | ||
| github.com/adrg/xdg v0.4.0 | ||
| github.com/charmbracelet/fang v0.1.0 | ||
|
||
| github.com/charmbracelet/glamour v0.6.0 | ||
| github.com/markusmobius/go-dateparser v1.2.3 | ||
| github.com/spf13/cobra v1.8.0 | ||
| github.com/spf13/cobra v1.9.1 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/alecthomas/chroma v0.10.0 // indirect | ||
| github.com/aymanbagabas/go-osc52 v1.0.3 // indirect | ||
| github.com/aymerick/douceur v0.2.0 // indirect | ||
| github.com/charmbracelet/colorprofile v0.3.0 // indirect | ||
| github.com/charmbracelet/lipgloss/v2 v2.0.0-beta.1 // indirect | ||
| github.com/charmbracelet/x/ansi v0.8.0 // indirect | ||
| github.com/charmbracelet/x/cellbuf v0.0.13 // indirect | ||
| github.com/charmbracelet/x/exp/charmtone v0.0.0-20250603201427-c31516f43444 // indirect | ||
| github.com/charmbracelet/x/term v0.2.1 // indirect | ||
| github.com/dlclark/regexp2 v1.4.0 // indirect | ||
| github.com/elliotchance/pie/v2 v2.7.0 // indirect | ||
| github.com/gorilla/css v1.0.0 // indirect | ||
|
|
@@ -25,19 +32,25 @@ require ( | |
| github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
| github.com/magefile/mage v1.14.0 // indirect | ||
| github.com/mattn/go-isatty v0.0.19 // indirect | ||
| github.com/mattn/go-runewidth v0.0.14 // indirect | ||
| github.com/mattn/go-runewidth v0.0.16 // indirect | ||
| github.com/microcosm-cc/bluemonday v1.0.21 // indirect | ||
| github.com/muesli/cancelreader v0.2.2 // indirect | ||
| github.com/muesli/mango v0.1.0 // indirect | ||
| github.com/muesli/mango-cobra v1.2.0 // indirect | ||
| github.com/muesli/mango-pflag v0.1.0 // indirect | ||
| github.com/muesli/reflow v0.3.0 // indirect | ||
| github.com/muesli/roff v0.1.0 // indirect | ||
| github.com/muesli/termenv v0.13.0 // indirect | ||
| github.com/olekukonko/tablewriter v0.0.5 // indirect | ||
| github.com/rivo/uniseg v0.2.0 // indirect | ||
| github.com/spf13/pflag v1.0.5 // indirect | ||
| github.com/rivo/uniseg v0.4.7 // indirect | ||
| github.com/spf13/pflag v1.0.6 // indirect | ||
| github.com/tetratelabs/wazero v1.2.1 // indirect | ||
| github.com/wasilibs/go-re2 v1.3.0 // indirect | ||
| github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
| github.com/yuin/goldmark v1.5.2 // indirect | ||
| github.com/yuin/goldmark-emoji v1.0.1 // indirect | ||
| golang.org/x/exp v0.0.0-20220321173239-a90fa8a75705 // indirect | ||
| golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect | ||
| golang.org/x/net v0.22.0 // indirect | ||
| golang.org/x/sys v0.18.0 // indirect | ||
| golang.org/x/text v0.14.0 // indirect | ||
| golang.org/x/sys v0.31.0 // indirect | ||
| golang.org/x/text v0.24.0 // indirect | ||
| ) | ||
This file contains hidden or 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
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.
[nitpick] Consider using
context.Background()instead ofcontext.TODO()for a clearer intent in production code.