Denis Krivak
Denis Krivak
Also there's no such thing as `O(n-1)`. It is still `O(n)`.
Just got this behavior (the log is totally same as in the first message), when tried to connect in the wi-fi network which requires web authentication, i.e. all the requests...
At least it should be added to the installation docs. (But personally I agree, that making automatically is better.)
For me it's good enough to search only for the exact match (means searching for `foo bar` shows only `foo bar`, not `foo and bar`), or to use regexp search...
Thanks for the tip with emojis. Personally I'd prefer full text in pinned tabs, but that's of course up to you to decide.
Most probably the problem is that your code is not at the top level. Go provides only one way to get the list of declaration comments: https://github.com/golang/go/blob/master/src/go/ast/ast.go#L1029 . And it's...
Thanks for clarification, I'll check it. But yes, seems like it should be a "top-level" comment.
I've finally checked it. It's not a declaration comment in terms of go parser. It just doesn't get to `go/ast.File.Decls` array. I don't see any way of fixing it without...
Good idea, thanks. Currently godot doesn't have any information about code outside comments, and Go doesn't provide any easy way to get it. So I'd say don't expect this feature...
Yep, interesting. This is a kind of error that "should never happen" :) My only guess without looking at the code, that quicktemplate produces code which is not formatted. And...