| Commit message (Expand) | Author | Age | Files | Lines |
| * | cmd/gofmt: don't call Chmod on windows | Brad Fitzpatrick | 2016-11-23 | 2 | -5/+23 |
| * | cmd/gofmt, crypto/tls: fix typos | Kevin Burke | 2016-11-11 | 1 | -2/+2 |
| * | cmd/gofmt: don't overwrite read-only files | Robert Griesemer | 2016-11-10 | 2 | -22/+33 |
| * | cmd/gofmt: don't leave tmp file if -w failed | Robert Griesemer | 2016-11-10 | 1 | -4/+9 |
| * | cmd/gofmt: don't eat source if -w fails | Robert Griesemer | 2016-11-10 | 1 | -1/+33 |
| * | cmd/gofmt: simplify map key literals | Gustav Westling | 2016-10-12 | 3 | -24/+64 |
| * | gofmt: remove unneeded call to os.Exit | Francesc Campoy | 2016-07-11 | 1 | -1/+0 |
| * | cmd/gofmt: make gofmt -s simplify slices in presence of dot-imports | Robert Griesemer | 2016-04-06 | 3 | -144/+10 |
| * | all: use bytes.Equal, bytes.Contains and strings.Contains | Dominik Honnef | 2016-04-01 | 1 | -2/+2 |
| * | all: single space after period. | Brad Fitzpatrick | 2016-03-02 | 2 | -4/+4 |
| * | all: make copyright headers consistent with one space after period | Brad Fitzpatrick | 2016-03-01 | 1 | -1/+1 |
| * | cmd/gofmt: Ignore file not found errors. | Benoit Sigoure | 2016-02-19 | 1 | -1/+3 |
| * | go/parser, go/types: report invalid else branch in if statements | Robert Griesemer | 2015-12-07 | 2 | -17/+0 |
| * | go/format: handle whitespace-only input correctly | Robert Griesemer | 2015-09-30 | 1 | -1/+11 |
| * | go/format, cmd/gofmt: avoid dependency on internal package format | Robert Griesemer | 2015-09-30 | 3 | -6/+170 |
| * | cmd/gofmt, go/format: refactor common pieces into internal/format | Sebastien Binet | 2015-04-01 | 2 | -155/+6 |
| * | all: use "reports whether" in place of "returns true if(f)" | Josh Bleecher Snyder | 2015-03-18 | 1 | -1/+1 |
| * | gofmt/doc: gofmt -s output may not be backward compatible | mattyw | 2015-02-08 | 1 | -0/+7 |
| * | go/format, cmd/gofmt: added missing comments, minor internal cleanup | Robert Griesemer | 2014-09-30 | 1 | -6/+23 |
| * | go/format, cmd/gofmt: fix issues with partial Go code with indent | Dmitri Shuralyov | 2014-09-29 | 6 | -73/+174 |
| * | build: adjustments for move from src/pkg to src | Russ Cox | 2014-09-08 | 1 | -1/+1 |
| * | cmd/gofmt: don't permit -w with stdin | Robert Griesemer | 2014-08-25 | 1 | -1/+6 |
| * | cmd/gofmt: fix error on partial Go code ending with line comment. | Dmitri Shuralyov | 2014-08-22 | 3 | -2/+8 |
| * | cmd/gofmt: make test files self-describing | Robert Griesemer | 2014-08-21 | 37 | -45/+150 |
| * | cmd/gofmt: remove testdata/*.gofmt files | Robert Griesemer | 2014-08-21 | 8 | -47/+0 |
| * | gofmt: -s flag simplifies "for _ = range x" | Robert Griesemer | 2014-07-17 | 4 | -2/+59 |
| * | cmd/gofmt: fix gofmt -s for 3-index slices | Robert Griesemer | 2014-07-01 | 3 | -3/+16 |
| * | gofmt/main: Added removal of empty declaration groups. | Simon Whitehead | 2014-07-01 | 4 | -2/+54 |
| * | gofmt: remove redundant check in rewriter | Robert Griesemer | 2014-06-30 | 1 | -3/+0 |
| * | all: fix "the the" typos. | Shenghou Ma | 2014-05-20 | 2 | -2/+2 |
| * | cmd/gofmt: minor internal cleanups | Robert Griesemer | 2014-02-27 | 1 | -13/+14 |
| * | cmd/gofmt: remove -tabwidth and -tabs flags | Brad Fitzpatrick | 2014-01-14 | 4 | -37/+16 |
| * | gofmt: explain why lower bounds aren't automatically simplified | Robert Hencke | 2013-10-03 | 1 | -0/+4 |
| * | cmd/gofmt: document -s transformations | Andrew Gerrand | 2013-09-16 | 1 | -0/+19 |
| * | cmd/gofmt: sort more, remove some duplicate imports | Josh Bleecher Snyder | 2013-09-06 | 2 | -0/+41 |
| * | go/parser: ParseExpr must accept type expressions | Robert Griesemer | 2013-04-03 | 4 | -2/+23 |
| * | cmd/gofmt: handle ... in rewrite of calls | Robert Griesemer | 2013-04-02 | 6 | -1/+73 |
| * | cmd/godoc: use go/build to determine package and example files | Robert Griesemer | 2013-02-19 | 1 | -1/+1 |
| * | go/parser: cleanups following CL 7307085 | Robert Griesemer | 2013-02-14 | 1 | -2/+2 |
| * | all: remove exec bit on files | Shenghou Ma | 2013-01-18 | 1 | -0/+0 |
| * | cmd/gofmt, bufio, image: Consistency and error handling. | Robin Eklind | 2013-01-07 | 1 | -1/+3 |
| * | src: Use bytes.Equal instead of bytes.Compare where possible. | Matthew Dempsky | 2013-01-07 | 2 | -2/+2 |
| * | gofmt: test rewrite of (x.(type)) -> x.(type) | Robert Griesemer | 2012-12-06 | 3 | -1/+122 |
| * | gofmt: simplify slices of the form s[a : len(s)] to s[a:] | Robert Griesemer | 2012-10-31 | 6 | -9/+285 |
| * | gofmt: added testcase for files containing \r\n line endings | Robert Griesemer | 2012-09-19 | 3 | -0/+46 |
| * | gofmt: handle comments correctly in rewrites | Robert Griesemer | 2012-06-25 | 4 | -2/+35 |
| * | cmd/gofmt: show ascii in usage. | Yasuhiro Matsumoto | 2012-03-15 | 1 | -1/+1 |
| * | cmd/gofmt: fix race in long test | Mikio Hara | 2012-03-08 | 2 | -10/+12 |
| * | cmd, pkg/go/*: fix "go vet" warnings for go/ast and go/printer | Nigel Tao | 2012-02-16 | 2 | -2/+2 |
| * | go/printer: don't lose relevant parentheses when rewriting selector expressions | Robert Griesemer | 2012-02-15 | 3 | -0/+149 |