From e450e02b83e0735e6534d1863f86d799d1548b26 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 21 Mar 2016 14:50:28 -0400 Subject: [PATCH] Use my fork of tcell --- src/highlighter.go | 2 +- src/micro.go | 2 +- src/statusline.go | 2 +- src/view.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/highlighter.go b/src/highlighter.go index 5831d1bc..b846ab76 100644 --- a/src/highlighter.go +++ b/src/highlighter.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/gdamore/tcell" + "github.com/zyedidia/tcell" "io/ioutil" "os/user" "path/filepath" diff --git a/src/micro.go b/src/micro.go index 6907d025..580cb584 100644 --- a/src/micro.go +++ b/src/micro.go @@ -2,9 +2,9 @@ package main import ( "fmt" - "github.com/gdamore/tcell" "github.com/go-errors/errors" "github.com/mattn/go-isatty" + "github.com/zyedidia/tcell" "io/ioutil" "os" ) diff --git a/src/statusline.go b/src/statusline.go index 8bc95c78..1800437b 100644 --- a/src/statusline.go +++ b/src/statusline.go @@ -1,7 +1,7 @@ package main import ( - "github.com/gdamore/tcell" + "github.com/zyedidia/tcell" "strconv" ) diff --git a/src/view.go b/src/view.go index 8bda8f31..84d57c57 100644 --- a/src/view.go +++ b/src/view.go @@ -2,7 +2,7 @@ package main import ( "github.com/atotto/clipboard" - "github.com/gdamore/tcell" + "github.com/zyedidia/tcell" "strconv" )