Skip to content

Commit

Permalink
rename to vim-go-client and move to under github.com
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Aug 29, 2016
1 parent 7c53375 commit 7e68b4d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/dev/child.go
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"time"

vim "local/haya14busa/go-vim-server"
vim "github.com/haya14busa/vim-go-client"
)

type myHandler struct{}
Expand Down
2 changes: 1 addition & 1 deletion example/dev/connect.go
Expand Up @@ -8,7 +8,7 @@ import (
"net"
"os"

vim "local/haya14busa/go-vim-server"
vim "github.com/haya14busa/vim-go-client"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion example/dev/job.go
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"time"

vim "local/haya14busa/go-vim-server"
vim "github.com/haya14busa/vim-go-client"
)

type myHandler struct{}
Expand Down
4 changes: 2 additions & 2 deletions vimserver.go
Expand Up @@ -9,7 +9,7 @@ import (
"text/template"
"time"

"local/haya14busa/go-vim-server/remote"
"github.com/haya14busa/vim-go-client/remote"
)

// Process represents Vim server process.
Expand Down Expand Up @@ -120,7 +120,7 @@ func Connect(addr, vimServerName string, server *Server) (*Client, error) {
}

func connectTmpFile(addr string) (*os.File, error) {
tmpfile, err := ioutil.TempFile("", "go-vim-server")
tmpfile, err := ioutil.TempFile("", "vim-go-client")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 7e68b4d

Please sign in to comment.