proxy: Pass SIGINT to the child fzf

pull/3830/head
Junegunn Choi 4 months ago
parent 6b4358f641
commit 303c3bae7f
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -103,7 +103,14 @@ func runProxy(commandPrefix string, cmdBuilder func(temp string) *exec.Cmd, opts
defer os.Remove(temp)
cmd := cmdBuilder(temp)
signal.Ignore(os.Interrupt)
intChan := make(chan os.Signal, 1)
defer close(intChan)
go func() {
if sig, valid := <-intChan; valid {
cmd.Process.Signal(sig)
}
}()
signal.Notify(intChan, os.Interrupt)
if err := cmd.Run(); err != nil {
if exitError, ok := err.(*exec.ExitError); ok {
code := exitError.ExitCode()

Loading…
Cancel
Save