Alexey Palazhchenko

Results 467 comments of Alexey Palazhchenko

> I don't think the behavior @coopernurse was describing can happen after we adopted the Go 1.3 TCP state function model. Well, what I see now with Go 1.4.2 is...

That would be a killer feature!

> The fact that go test ./my works is luck, not design. It _is_ design: http://golang.org/cmd/go/#hdr-Description_of_package_lists

> It makes no sense to have the path to all of my applications be on the GOPATH That's what I thought. Then I bumped into "unrecognized import path" error...

Well, `go/token` is obscure, so pos-to-line converter would be very useful. Also, this code has a bug: `a.files` is intended to by used as a cache, but never updated.

It kinda works for me. I cloned repo into `~/Library/Application Support/Avian/Bundles` and renamed into `Go.tmbundle`. Also I removed indentation rules as done [there](https://github.com/sdefresne/Go.tmbundle/commit/82ba9eabbf5516e4b3def579a9f5072319bebe97).

Another example: ```go package main import ( "fmt" ) func main() { fmt.Printf("%s %[1]s", "foo") } ``` https://play.golang.org/p/5wSu2_WRU0m See "Explicit argument indexes" at https://golang.org/pkg/fmt/#hdr-Printing.

Hi. I use gocoverutil for E2E tests too and merge them without problems. Does current implementation cause any problems?

> after merging, the result is still So? Is it wrong? Does it cause any problems? --- I build my services (not only tests) with code coverage information for testing:...