diff --git a/go.mod b/go.mod index de5dba55eb36e0daddffbbdc10334ed7d70844bc..e41ca0fca7cd8b6477f9be0e923fbb9bbe824f3e 100644 --- a/go.mod +++ b/go.mod @@ -9,13 +9,13 @@ require ( github.com/charmbracelet/bubbletea v0.19.0 github.com/charmbracelet/glamour v0.3.0 github.com/charmbracelet/lipgloss v0.4.0 - github.com/charmbracelet/wish v0.0.0-20210920172735-41a835204b30 + github.com/charmbracelet/wish v0.0.0-00010101000000-000000000000 github.com/dustin/go-humanize v1.0.0 github.com/gliderlabs/ssh v0.3.3 github.com/go-git/go-git/v5 v5.4.2 github.com/meowgorithm/babyenv v1.3.1 github.com/muesli/reflow v0.3.0 - github.com/muesli/termenv v0.9.0 + github.com/muesli/termenv v0.9.0 // indirect golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect gopkg.in/yaml.v2 v2.3.0 ) diff --git a/internal/tui/commands.go b/internal/tui/commands.go index 5b6f32605b4dc6ae3e65298fb49e71f26c1b16b6..6ace2cf37ace9d5e120ddd2fc5a64dc6e1478320 100644 --- a/internal/tui/commands.go +++ b/internal/tui/commands.go @@ -9,7 +9,6 @@ import ( br "github.com/charmbracelet/soft/internal/tui/bubbles/repo" "github.com/charmbracelet/soft/internal/tui/bubbles/selection" gm "github.com/charmbracelet/wish/git" - "github.com/muesli/termenv" ) type errMsg struct{ err error } @@ -22,7 +21,6 @@ func (b *Bubble) setupCmd() tea.Msg { if b.config == nil || b.config.Source == nil { return errMsg{err: fmt.Errorf("config not set")} } - lipgloss.SetColorProfile(termenv.ANSI256) mes, err := b.menuEntriesFromSource() if err != nil { return errMsg{err}