Skip to content

Commit abda39d

Browse files
committed
Use personal fork of termui
1 parent a5f2c48 commit abda39d

40 files changed

+35
-31
lines changed

components/channels.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/gizak/termui"
7+
"github.com/erroneousboat/termui"
88

99
"github.com/erroneousboat/slack-term/service"
1010
)

components/chat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sort"
77
"strings"
88

9-
"github.com/gizak/termui"
9+
"github.com/erroneousboat/termui"
1010

1111
"github.com/erroneousboat/slack-term/config"
1212
"github.com/erroneousboat/slack-term/service"

components/input.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package components
22

33
import (
4-
"github.com/gizak/termui"
4+
"github.com/erroneousboat/termui"
55

66
"github.com/erroneousboat/slack-term/service"
77
)

components/mode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package components
22

3-
import "github.com/gizak/termui"
3+
import "github.com/erroneousboat/termui"
44

55
// Mode is the definition of Mode component
66
type Mode struct {

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"os"
77

8-
"github.com/gizak/termui"
8+
"github.com/erroneousboat/termui"
99
)
1010

1111
// Config is the definition of a Config struct

context/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package context
22

33
import (
4-
"github.com/gizak/termui"
4+
"github.com/erroneousboat/termui"
55
termbox "github.com/nsf/termbox-go"
66

77
"github.com/erroneousboat/slack-term/config"

handlers/event.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strconv"
66
"time"
77

8-
"github.com/gizak/termui"
8+
"github.com/erroneousboat/termui"
99
"github.com/nlopes/slack"
1010
termbox "github.com/nsf/termbox-go"
1111

@@ -74,7 +74,7 @@ func handleTermboxEvents(ctx *context.AppContext, ev termbox.Event) bool {
7474
func handleMoreTermboxEvents(ctx *context.AppContext, ev termbox.Event) bool {
7575
for {
7676
select {
77-
case ev := <- ctx.EventQueue:
77+
case ev := <-ctx.EventQueue:
7878
ok := handleTermboxEvents(ctx, ev)
7979
if !ok {
8080
return false

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88
"os/user"
99
"path"
1010

11-
"github.com/erroneousboat/slack-term/context"
12-
"github.com/erroneousboat/slack-term/handlers"
11+
"github.com/erroneousboat/termui"
1312
termbox "github.com/nsf/termbox-go"
1413

15-
"github.com/gizak/termui"
14+
"github.com/erroneousboat/slack-term/context"
15+
"github.com/erroneousboat/slack-term/handlers"
1616
)
1717

1818
const (
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)