Skip to content

Commit

Permalink
Update readme and help text.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigpin committed Nov 17, 2018
1 parent 9c340eb commit 82acf99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ Source code editor in pure Go.
- Drag and drop files/directories to the editor.
- Detects if files opened are changed outside of the editor.
- Calls goimports if available when saving a .go file.
- Clicking on `.go` files identifiers will jump to the identifier definition (Ex: a function definition).
- ~~Auto-completion (suggestions) in `.go` files. (__experimental__)~~ (__under-reconstruction__)
- Clicking on `.go` files identifiers will jump to the identifier definition (uses go guru).
- Debug utility for go programs (`GoDebug` cmd). (__experimental__)
- allows to go back and forth in time to consult code lines.
- Plugin support
- `gotodefinition`: plugin that shows how to override the textarea click action.
- `autocomplete` (suggestions) plugin for `.go` files (uses gocode).

## Installation and usage

Expand Down
2 changes: 1 addition & 1 deletion editor.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {
tabWidthFlag := flag.Int("tabwidth", 8, "")
shadowsFlag := flag.Bool("shadows", true, "shadow effects on some elements")
sessionNameFlag := flag.String("sessionname", "", "open existing session")
useMultiKeyFlag := flag.Bool("usemultikey", false, "use multi-key to compose characters ([multi-key, ~, a]=ã, ...)")
useMultiKeyFlag := flag.Bool("usemultikey", false, "use multi-key to compose characters (Ex: [multi-key, ~, a] = ã)")
pluginsFlag := flag.String("plugins", "", "comma separated string of plugin filenames")

flag.Parse()
Expand Down

0 comments on commit 82acf99

Please sign in to comment.