Skip to content

Commit

Permalink
ANN
Browse files Browse the repository at this point in the history
  • Loading branch information
DisposaBoy committed Mar 26, 2018
1 parent e4fb0d9 commit 52c498a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Please make sure to read all the comments, as enabling it will affect GoSublime

**Changes:**

## 18.03.26-1
* update gocode
* fix gocode completion showing duplicate function parameter names
* add support for restricting the files in which events are triggered
* (hopefully) fix an issue where some users were experiencing laggy input

## 18.03.23-1
* GOPATH is automatically set to the internal GOPATH when editing margo source files
this allows for things like linters and gocode to work when editing `margo.go`
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.03.23-1'
VERSION = 'r18.03.23-1'
ANN = 'a18.03.26-1'
VERSION = 'r18.03.26-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 52c498a

Please sign in to comment.