Skip to content

Commit

Permalink
ANN
Browse files Browse the repository at this point in the history
  • Loading branch information
DisposaBoy committed Mar 5, 2018
1 parent 5e763cc commit 2fe1c53
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,28 @@ If you find GoSublime useful and would like to support me and future development
please donate via one of the available methods on https://github.com/DisposaBoy/GoSublime#donations


**margo:**

The new version of margo is close to being ready for real usage.
If you'd like to test it out, press `ctrl+.`,`ctrl+x` or `cmd+.`,`cmd+x`
to open the extension file and then save it and restart sublime text.

Please make sure to read all the comments, as enabling it will affect GoSublime features.

**Changes:**

## 18.03.05-1
* if no status is set, the status markers (dots) are no longer shown
* sh-bootstrap.go is now built with `go build` to improve startup time in go1.10
* path handling on Windows was improved
* linter support should now be almost complete.
* add support for displaying issues via `ctrl+.`,`ctrl+e` or `cmd+.`,`cmd+e`
* errors for all files in the package are tracked
* the error count in the status bar is always visible if there are errors in other files

see the example extension https://github.com/disposablue/margo/blob/master/extension-example/extension-example.go for examples of builtin linters.


## 18.02.17-2
* stop linking sqlite3 to avoid cgo-related compilation errors

Expand Down
4 changes: 2 additions & 2 deletions gosubl/about.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import re
import sublime

ANN = 'a18.02.17-1'
VERSION = 'r18.02.17-2'
ANN = 'a18.03.05-1'
VERSION = 'r18.03.05-1'
VERSION_PAT = re.compile(r'\d{2}[.]\d{2}[.]\d{2}-\d+', re.IGNORECASE)
DEFAULT_GO_VERSION = 'go?'
GO_VERSION_OUTPUT_PAT = re.compile(r'go\s+version\s+(\S+(?:\s+[+]\w+|\s+\([^)]+)?)', re.IGNORECASE)
Expand Down

0 comments on commit 2fe1c53

Please sign in to comment.