Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/litgh/atom-godef
Atom package, find definition under current cursor for golang using 'godef'
https://github.com/litgh/atom-godef
Last synced: 3 months ago
JSON representation
Atom package, find definition under current cursor for golang using 'godef'
- Host: GitHub
- URL: https://github.com/litgh/atom-godef
- Owner: litgh
- License: mit
- Created: 2015-01-28T03:19:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-27T08:27:34.000Z (over 8 years ago)
- Last Synced: 2024-07-16T13:08:37.560Z (4 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 12.7 KB
- Stars: 7
- Watchers: 1
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# atom-godef
Find definition under current cursor for golang using 'godef'## Installation
The plugin assumes `godef` is present at `$GOPATH/bin/godef`. You need install `godef` first:
go get -v code.google.com/p/rog-go/exp/cmd/godef
## Usage
To activate godef , run `godef:toggle` via CommandPalette,
or apply some keybindings in your keymap.cson:```coffee
'atom-text-editor':
'ctrl-i': 'godef:toggle'
```