From 7d16e97b95fe6ee39428c47dcc1fa6482532d0c7 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Thu, 29 Sep 2016 18:43:10 -0400 Subject: [PATCH] Switch to my fork of json5 This should reduce go get download times for micro considerably because the original json5 committed a bunch of binaries which cause the repository to be very large and slow to download. My fork fixes that. --- cmd/micro/bindings.go | 2 +- cmd/micro/settings.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/micro/bindings.go b/cmd/micro/bindings.go index e73b6680..35081e62 100644 --- a/cmd/micro/bindings.go +++ b/cmd/micro/bindings.go @@ -5,7 +5,7 @@ import ( "os" "strings" - "github.com/yosuke-furukawa/json5/encoding/json5" + "github.com/zyedidia/json5/encoding/json5" "github.com/zyedidia/tcell" ) diff --git a/cmd/micro/settings.go b/cmd/micro/settings.go index 9f95d177..41d26449 100644 --- a/cmd/micro/settings.go +++ b/cmd/micro/settings.go @@ -8,8 +8,8 @@ import ( "strconv" "strings" - "github.com/yosuke-furukawa/json5/encoding/json5" "github.com/zyedidia/glob" + "github.com/zyedidia/json5/encoding/json5" ) type optionValidator func(string, interface{}) error