Skip to content

Commit

Permalink
vendor: unfork tcell (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicks authored Dec 10, 2018
1 parent 2d7c8ab commit 6abad02
Show file tree
Hide file tree
Showing 55 changed files with 19 additions and 8,441 deletions.
13 changes: 4 additions & 9 deletions Gopkg.lock

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

4 changes: 0 additions & 4 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@
name = "k8s.io/client-go"
version = "kubernetes-1.12.1"

[[constraint]]
name = "github.com/windmilleng/tcell"
branch = "master"

# these need to be here. https://github.com/golang/dep/issues/1415
[[override]]
name = "github.com/docker/docker"
Expand Down
2 changes: 1 addition & 1 deletion internal/hud/buildstatus.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package hud
import (
"time"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
"github.com/windmilleng/tilt/internal/hud/view"
"github.com/windmilleng/tilt/internal/rty"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/hud/hud.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"sync"
"time"

"github.com/gdamore/tcell"
"github.com/pkg/browser"
"github.com/pkg/errors"
"github.com/windmilleng/tcell"

"github.com/windmilleng/tilt/internal/hud/view"
"github.com/windmilleng/tilt/internal/store"
Expand Down
2 changes: 1 addition & 1 deletion internal/hud/renderer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"
"time"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
"github.com/windmilleng/tilt/internal/hud/view"
"github.com/windmilleng/tilt/internal/model"
"github.com/windmilleng/tilt/internal/rty"
Expand Down
2 changes: 1 addition & 1 deletion internal/hud/renderer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/windmilleng/tilt/internal/model"
"github.com/windmilleng/tilt/internal/rty"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

var clockForTest = func() time.Time { return time.Date(2017, 1, 1, 12, 0, 0, 0, time.UTC) }
Expand Down
2 changes: 1 addition & 1 deletion internal/hud/resourceview.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
"github.com/windmilleng/tilt/internal/hud/view"
"github.com/windmilleng/tilt/internal/rty"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/canvas.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package rty
import (
"fmt"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

// Canvases hold content.
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package rty
import (
"math"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

// Components are able to render themselves onto a screen
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/interactive_tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

const testDataDir = "testdata"
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/layouts.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/rivo/tview"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

// Layouts implement Component
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/layouts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"strings"
"testing"

"github.com/gdamore/tcell"
"github.com/stretchr/testify/assert"
"github.com/windmilleng/tcell"
)

func TestFlexLayoutOverflow(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package rty
import (
"testing"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

var screen tcell.Screen
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/modal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"
"testing"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

func TestModal(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package rty
import (
"fmt"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

func NewRTY(screen tcell.Screen) RTY {
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/text.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"io"

"github.com/gdamore/tcell"
"github.com/pkg/errors"
"github.com/windmilleng/tcell"
)

type StringBuilder interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/rty/text_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/windmilleng/tcell"
"github.com/gdamore/tcell"
)

func TestTextString(t *testing.T) {
Expand Down
13 changes: 0 additions & 13 deletions vendor/github.com/windmilleng/tcell/.appveyor.yml

This file was deleted.

1 change: 0 additions & 1 deletion vendor/github.com/windmilleng/tcell/.gitignore

This file was deleted.

19 changes: 0 additions & 19 deletions vendor/github.com/windmilleng/tcell/.travis.yml

This file was deleted.

4 changes: 0 additions & 4 deletions vendor/github.com/windmilleng/tcell/AUTHORS

This file was deleted.

Loading

0 comments on commit 6abad02

Please sign in to comment.