Skip to content

Commit

Permalink
Merge pull request #50 from koki-develop/output-to-stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
koki-develop committed May 5, 2023
2 parents d605d19 + 7be77d1 commit 60a13da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fzf.go
Expand Up @@ -3,6 +3,7 @@ package fzf
import (
"errors"
"fmt"
"os"
"reflect"

tea "github.com/charmbracelet/bubbletea"
Expand Down Expand Up @@ -34,7 +35,7 @@ func New(opts ...Option) (*FZF, error) {

return &FZF{
model: m,
program: tea.NewProgram(m),
program: tea.NewProgram(m, tea.WithOutput(os.Stderr)),
}, nil
}

Expand Down

0 comments on commit 60a13da

Please sign in to comment.