From fb7d8192f59fcbb26655596a0704b755675b5f27 Mon Sep 17 00:00:00 2001 From: DisposaBoy Date: Fri, 16 Mar 2018 12:07:29 +0000 Subject: [PATCH] ANN --- CHANGELOG.md | 6 ++++++ gosubl/about.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 558b365f..5f158d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ Please make sure to read all the comments, as enabling it will affect GoSublime **Changes:** +## 18.03.16-1 + * support for context-aware snippets have now been added in the new version of margo. + just add `golang.Snippets,` to your reducers to enable it. + + see https://github.com/disposablue/margo/blob/master/extension-example/extension-example.go + ## 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 diff --git a/gosubl/about.py b/gosubl/about.py index b799f874..34e05670 100644 --- a/gosubl/about.py +++ b/gosubl/about.py @@ -1,8 +1,8 @@ import re import sublime -ANN = 'a18.03.05-1' -VERSION = 'r18.03.05-1' +ANN = 'a18.03.16-1' +VERSION = 'r18.03.16-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)