Skip to content

Commit

Permalink
Use personal fork of termui
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbruinsslot committed Sep 23, 2017
1 parent a5f2c48 commit abda39d
Show file tree
Hide file tree
Showing 40 changed files with 35 additions and 31 deletions.
2 changes: 1 addition & 1 deletion components/channels.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/gizak/termui"
"github.com/erroneousboat/termui"

"github.com/erroneousboat/slack-term/service"
)
Expand Down
2 changes: 1 addition & 1 deletion components/chat.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"strings"

"github.com/gizak/termui"
"github.com/erroneousboat/termui"

"github.com/erroneousboat/slack-term/config"
"github.com/erroneousboat/slack-term/service"
Expand Down
2 changes: 1 addition & 1 deletion components/input.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package components

import (
"github.com/gizak/termui"
"github.com/erroneousboat/termui"

"github.com/erroneousboat/slack-term/service"
)
Expand Down
2 changes: 1 addition & 1 deletion components/mode.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package components

import "github.com/gizak/termui"
import "github.com/erroneousboat/termui"

// Mode is the definition of Mode component
type Mode struct {
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"os"

"github.com/gizak/termui"
"github.com/erroneousboat/termui"
)

// Config is the definition of a Config struct
Expand Down
2 changes: 1 addition & 1 deletion context/context.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package context

import (
"github.com/gizak/termui"
"github.com/erroneousboat/termui"
termbox "github.com/nsf/termbox-go"

"github.com/erroneousboat/slack-term/config"
Expand Down
4 changes: 2 additions & 2 deletions handlers/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"time"

"github.com/gizak/termui"
"github.com/erroneousboat/termui"
"github.com/nlopes/slack"
termbox "github.com/nsf/termbox-go"

Expand Down Expand Up @@ -74,7 +74,7 @@ func handleTermboxEvents(ctx *context.AppContext, ev termbox.Event) bool {
func handleMoreTermboxEvents(ctx *context.AppContext, ev termbox.Event) bool {
for {
select {
case ev := <- ctx.EventQueue:
case ev := <-ctx.EventQueue:
ok := handleTermboxEvents(ctx, ev)
if !ok {
return false
Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"os/user"
"path"

"github.com/erroneousboat/slack-term/context"
"github.com/erroneousboat/slack-term/handlers"
"github.com/erroneousboat/termui"
termbox "github.com/nsf/termbox-go"

"github.com/gizak/termui"
"github.com/erroneousboat/slack-term/context"
"github.com/erroneousboat/slack-term/handlers"
)

const (
Expand Down
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"ignore": "test",
"package": [
{
"checksumSHA1": "0orwvPL96wFckVJyPl39fz2QsgA=",
"path": "github.com/gizak/termui",
"revision": "72304ddb9b4e9838426a021aad64a5a860e98324",
"revisionTime": "2017-05-02T14:12:00Z"
"checksumSHA1": "CbpC2ha+GTTuROMyyLVd/L3O+8Y=",
"path": "github.com/erroneousboat/termui",
"revision": "80f245cdfa0488883a3e8602bf3f0c8a3c889a22",
"revisionTime": "2017-09-23T11:51:41Z"
},
{
"checksumSHA1": "7hln62oZPZmyqEmgXaybf9WxQ7A=",
Expand Down
2 changes: 1 addition & 1 deletion views/chat.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package views

import (
"github.com/gizak/termui"
"github.com/erroneousboat/termui"

"github.com/erroneousboat/slack-term/components"
"github.com/erroneousboat/slack-term/service"
Expand Down

0 comments on commit abda39d

Please sign in to comment.