Open liuhewei opened 9 years ago
Hi @waigani ,
Follow https://github.com/waigani/GoOracle/issues/10, I added the support for windows. Codes are simple, just to let it work, and not affect OSX/linux part. Modified places:
:
[^:]+
.+\.go
export
SET
"path1";"path2";...
After this change, the GOPATH settings support multiple paths, for example:
"GoOracle": { "env": { "GOPATH": "D:\\Codes\\gocode\\huaweitech;D:\\Codes\\gocode\\huaweitech\\src\\github.com\\cloudfoundry\\cli/Godeps/_workspace", "GOROOT": "D:\\Tools\\Golang", }, // other settings }
Hope it could help guys who have the same requirements with me. So please check it if you have time :)
Hi @waigani ,
Follow https://github.com/waigani/GoOracle/issues/10, I added the support for windows. Codes are simple, just to let it work, and not affect OSX/linux part. Modified places:
:
, so the regex can't use[^:]+
, I changed it to.+\.go
export
toSET
for GOPATH and GOROOT env variables"path1";"path2";...
After this change, the GOPATH settings support multiple paths, for example:
Hope it could help guys who have the same requirements with me. So please check it if you have time :)