Skip to content

Commit 93b9280

Browse files
committed
v3.2.1
1 parent 9faf1ad commit 93b9280

File tree

2 files changed

+15
-22
lines changed

2 files changed

+15
-22
lines changed

CHANGELOG.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
Planned:
22
- Rework some snippets, like a single import without an alias
3-
- Add support for all go tools like fix, vet, lint, oracle
3+
- Add support for all go tools like fix, vet, oracle
4+
5+
### 3.2.1 / 2015-10-18
6+
- [Changed icons for completion menu to HiDPI version @msoap](https://github.com/syscrusher/golang.tmbundle/commit/6201a07c52595cc48f60691eedca973a8121152a)
7+
- [New path to godoc @msoap](https://github.com/syscrusher/golang.tmbundle/commit/f7e24e69d6d099597757754c7097670bd76fac31)
8+
- [FIx duplicate `go get` in imports statement](https://github.com/syscrusher/golang.tmbundle/commit/0fa56a57877e7e947ac338c34438e3c906e430aa)
49

510
###3.2.0 / 2015-09-18
6-
- [Support for dynamically determining gopath, package name, and package path @fmccann](https://github.com/syscrusher/golang.tmbundle/commit/49440460f058e80ccf0f2bd44891b48164091128)
7-
- [Support for golint and goimports @fmccann](https://github.com/syscrusher/golang.tmbundle/commit/49440460f058e80ccf0f2bd44891b48164091128)
8-
- [Display package name when running command against package name @fmccann](https://github.com/syscrusher/golang.tmbundle/commit/49440460f058e80ccf0f2bd44891b48164091128)
9-
- [Allow run and build on unsaved files @tg](https://github.com/syscrusher/golang.tmbundle/commit/4809d74ea36654bdd9a2475ded6f729eb3082b65)
11+
- [Support for dynamically determining gopath, package name, and package path @fmccann](https://github.com/syscrusher/golang.tmbundle/commit/26538901bcb6253660bf4fab52dbc336ed984e2c)
12+
- [Support for golint and goimports @fmccann](https://github.com/syscrusher/golang.tmbundle/commit/26538901bcb6253660bf4fab52dbc336ed984e2c)
13+
- [Display package name when running command against package name @fmccann](https://github.com/syscrusher/golang.tmbundle/commit/26538901bcb6253660bf4fab52dbc336ed984e2c)
1014
- [Fmt updates document without saving the current version @tg](https://github.com/syscrusher/golang.tmbundle/commit/998d17a9f8024b2c6571f242d2d93f44723c3e87)
1115
- [Automatically format documents on save @tg](https://github.com/syscrusher/golang.tmbundle/commit/8e6a71b1f8e986b7644c3286c1f4c538dc1345ec)
12-
- [Add fmt.Print snippet @jish](https://github.com/syscrusher/golang.tmbundle/commit/f73850c2774b1bbe6c7ecec40e4bbbb376fa1225)
13-
- [Add fmt.Fprintf snippet](https://github.com/syscrusher/golang.tmbundle/commit/ead451fa74a98628ddeb50ab6d901be18b60bba7)
16+
- [Remove leading path separator (:) from GOPATH @tg](https://github.com/syscrusher/golang.tmbundle/commit/cf4a25062bf453ca1a46a4ad7ef7ff01740f350b)
1417

1518
###3.1.0 / 2015-02-04
1619
- [Run all non-run commands against current directory @tg](https://github.com/syscrusher/golang.tmbundle/commit/d3f09ee3bbe5fba76964e1bdc23e7d7247b733ee)

README.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
## golang.tmbundle v3.2.0
1+
## golang.tmbundle v3.2.1
22
(a TextMate 2 bundle for the go programming language)
33

44
### Installation
55
TextMate by default will detect .go files and load [Jim Dovey's bundle](https://github.com/AlanQuatermain/go-tmbundle). This is a fork with additional improvements merged from around the community.
66

77
Big changes from the default version:
8-
- Support for goimports (thanks [fmccann](https://github.com/fmccann))
9-
- Support for golint (thanks [fmccann](https://github.com/fmccann))
8+
- Support for goimports and golint (thanks [fmccann](https://github.com/fmccann))
109
- Users can supply commands via ENV variables (TM\_GO\_DYNAMIC\_GOPATH, TM\_GO\_DYNAMIC\_PKG, TM\_GO\_DYNAMIC\_PKG\_PATH). The bundle will consult these commands if defined to dynamically change the gopath or package based on the current directory. (thanks [fmccann](https://github.com/fmccann))
1110
- all non-run go commands operate on the current directory instead of per file if the package is not defined dynamically. (thanks [tg](https://github.com/tg)).
1211
- run and build work on unsaved files (thanks [tg](https://github.com/tg))
1312
- added print, println, printf, and fprintf snippets (thanks [jish](https://github.com/jish))
14-
- bugfixes
13+
- HiDPI completion icons (thanks [msoap](https://github.com/syscrusher/golang.tmbundle/commits/master?author=msoap))
14+
- bugfixes (thanks everyone!)
1515

1616
To install this bundle manually, open a Terminal window and do:
1717

@@ -22,22 +22,12 @@ git clone git://github.com/syscrusher/golang.tmbundle.git
2222
```
2323

2424

25-
This bundle uses gocode for completion and godoc for documentation, which can be installed with:
25+
This bundle uses gocode for completion, godoc for documentation, golint for linting, and goimports for automatic imports and formatting. These can be installed with the following commands:
2626

2727
```Shell
2828
go get -u github.com/nsf/gocode
2929
go get -u golang.org/x/tools/cmd/godoc
30-
```
31-
32-
This bundle uses goimports for cleaning up imports and reformatting code, which can be installed with:
33-
34-
```Shell
3530
go get -u golang.org/x/tools/cmd/goimports
36-
```
37-
38-
This bundle uses golint for linting code, which can be installed with:
39-
40-
```Shell
4131
go get -u github.com/golang/lint/golint
4232
```
4333

0 commit comments

Comments
 (0)