waigani / GoOracle

GoOracle is a Golang plugin for SublimeText that integrates the Go oracle tool.
MIT License
73 stars 17 forks source link

Trailing comma in settings #1

Closed Logiraptor closed 9 years ago

Logiraptor commented 10 years ago

On first load the plugin causes a few errors due to the trailing commas in the json settings files as well as in the keymap file.

For example this is invalid:

[
           { "keys": ["ctrl+shift+o"], "command": "go_oracle"},
]

It should be

[
           { "keys": ["ctrl+shift+o"], "command": "go_oracle"}
]
ox commented 10 years ago

There's also another one in Default (OSX).sublime-keymap

waigani commented 9 years ago

This has been resolved in the latest release. Thanks for reporting the issue.