Skip to content

Commit dc7cffd

Browse files
committed
disable on windows
1 parent ff9bb94 commit dc7cffd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/gui/gui.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"path/filepath"
1111
"reflect"
1212
"regexp"
13+
"runtime"
1314
"sort"
1415
"strings"
1516
"sync"
@@ -421,6 +422,10 @@ func (gui *Gui) getPerRepoConfigFiles() []*config.ConfigFile {
421422
}
422423

423424
func (gui *Gui) suspendApp(g *gocui.Gui, v *gocui.View) error {
425+
if runtime.GOOS == "windows" {
426+
return nil
427+
}
428+
424429
if err := g.Suspend(); err != nil {
425430
return err
426431
}

0 commit comments

Comments
 (0)