http://www.marinamele.com/install-and-configure-atom-editor-for-python
Use a Python virtualenv
apm install linter
pip install flake8
pip install flake8-docstrings
apm install linter-flake8
apm install hydrogen
start atom after using workon to select the virutalenv
https://atom.io/packages/hydrogen
http://marcio.io/2015/07/supercharging-atom-editor-for-go-development/
apm install go-plus
apm install go-rename
apm install file-icons
apm install linter-golinter
http://stackoverflow.com/questions/38012317/why-isnt-autocomplete-of-local-packages-working-in-atom-editor
Use a Python virtualenv
apm install linter
pip install flake8
pip install flake8-docstrings
pip install jupyterapm install linter-flake8
apm install hydrogen
start atom after using workon to select the virutalenv
https://atom.io/packages/hydrogen
http://marcio.io/2015/07/supercharging-atom-editor-for-go-development/
apm install go-plus
apm install go-rename
apm install file-icons
apm install linter-golinter
go get -u github.com/jstemmer/gotags
go get -u golang.org/x/tools/cmd/...
go get -u github.com/golang/lint/golint
https://rominirani.com/setup-go-development-environment-with-atom-editor-a87a12366fcf#.94k3uye2t
apm install terminal-plus
http://stackoverflow.com/questions/38012317/why-isnt-autocomplete-of-local-packages-working-in-atom-editor
The issue is addressed in the README.md of the go-plus package:
First of all, make sure autocomplete-plus is present on your setup. Go-plus provides autocompletion through gocode tool, so you should ensure it's in PATH and available.
If you can't get autocompletion for the user-defined packages working, while it's there for packages from standard library, it's likely a trivial gocode-related issue. Try runninggocode set
. Some expected output'd be:propose-builtins false lib-path "" autobuild false force-debug-output "" package-lookup-mode "go"
What you gotta do is switching autobuild to true, by runninggocode set autobuild true
. Check autocompletion now, it must be working right.