Dmitri Shuralyov

Results 869 comments of Dmitri Shuralyov

> *should* go/format touch .s files, if only the build header lines? My personal preference would be to keep the scope of `cmd/gofmt` (and `go/format`, which is just an importable...

Using comments like `// dupl-disable` for this is not a good idea.

A possible solution is to not run `dupl` in CI systems. `dupl` is a tool for finding code clones. Such a tool is best used in the hands of a...

Are you able to install any other Go packages successfully? If not, it sounds like your Go installation is broken. I would recommend removing Go and installing it again. See...

Yes, I would highly recommend installing Go from its website rather than a package manager. In most cases, it's much easier, more up to date, and works flawlessly. Don't forget...

It's also really easy. On Linux, you can simply do: ``` bash # Install Go on Linux. curl -L https://golang.org/dl/go1.8.1.linux-amd64.tar.gz | sudo tar zx -C /usr/local/ # Add to ~/.bash_profile....

It's probably even better to uninstall some older version rather than sweep it under the rug. My instructions were for a clean Linux installation that does not have Go installed.

@99zombies This is an old issue. There are different causes that can lead to the same outcome, and it's likely the people above had another instance of this problem. I...

The official extension for Visual Studio Code, https://github.com/Microsoft/vscode-go#readme, says that it uses `gocode` for autocompletion. Do you know if it does it by implementing the language-server protocol, or another way?