Alec Thomas

Results 98 issues of Alec Thomas

One thing I really like in GoSublime is the ability to [explicitly add an import](https://github.com/DisposaBoy/GoSublime/blob/master/USAGE.md#package-imports). It would be great if AnacondaGO supported that feature!

GoSublime has the ability to show essentially a "quick jump" panel for all symbols in a file, *including* struct fields. This is really useful. eg. ![image](https://cloud.githubusercontent.com/assets/41767/23046133/ee226a1a-f4fb-11e6-8ae6-dd751bf33d64.png)

I realise this is probably because pytest automatically generates these marks, and django-pytest uses them later, but it's quite...surprising to have your main database mutated by the tests :( I...

Hi, I can't seem to find a way to build URLs from a request. I see that the adapter is built inside `Application.respond()` but it doesn't seem to be exposed....

question

Currently, any support for concurrency relies solely on the user. Possibly something like [this](http://michaelshaw.github.io/game_talk/game.html#/23), with read-only "copies" of the entities and a stream of operations that are applied. Unsure.

discussion

I'm only filing this because the README states that they are: ``` $ faq dyld: Library not loaded: /usr/local/opt/jq/lib/libjq.1.dylib Referenced from: /Users/aat/Library/Caches/hermit/pkg/faq-0.0.7/faq Reason: image not found ```

In very large repositories, I don't really want to include the source code again, I'd rather just link to the original source code files. I realise this will require some...

feature request

Having a one-line summary for each symbol displayed _under_ the symbol would be very useful, as when browsing API's it's often difficult to tell what a type/function will do without...

suggestion

The following doesn't seem to report as an issue, but I would expect it to: ``` go func foo() (name string) { if true { name := "foo" println(name) }...

I'm not sure if this is intentional, but go-nyet doesn't pick up some issues that go vet does. eg. ``` devtodo2$ go vet . importer.go:29: possible formatting directive in fatal...