From ba3380252523db473a575848fe0abff5e26e4fd0 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 24 Jul 2016 10:51:08 -0400 Subject: [PATCH] Use my fork of clipboard --- cmd/micro/actions.go | 2 +- cmd/micro/micro.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index b8418d1a..48808cf9 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/atotto/clipboard" "github.com/mitchellh/go-homedir" + "github.com/zyedidia/clipboard" ) // CursorUp moves the cursor up diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index 1e9a31b2..395a7461 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -7,12 +7,12 @@ import ( "os" "runtime" - "github.com/atotto/clipboard" "github.com/go-errors/errors" "github.com/layeh/gopher-luar" "github.com/mattn/go-isatty" "github.com/mitchellh/go-homedir" "github.com/yuin/gopher-lua" + "github.com/zyedidia/clipboard" "github.com/zyedidia/tcell" "github.com/zyedidia/tcell/encoding" )