summaryrefslogtreecommitdiff
path: root/misc/emacs
AgeCommit message (Collapse)AuthorFilesLines
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg1-13/+50
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg1-85/+335
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg1-123/+312
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg2-753/+627
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý1-41/+110
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-102/+381
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý2-0/+594
2011-09-13Imported Upstream version 60Ondřej Surý2-594/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-2/+2
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý2-3/+5
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý2-20/+57
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-3/+3
2010-01-13 Fix minor issues with updating go-mode in an empty bufferKevin Ballard1-8/+10
Sometimes during editing, when the buffer is emptied (for example, as part of a call to M-x gofmt), an error is raised when remove-text-properties is called. Ensure that these calls use point-max instead of buffer-size to determine their end point. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/189042 Committer: Rob Pike <r@golang.org>
2010-01-06Use remove-text-properties instead ofAustin Clements1-2/+2
remove-list-of-test-properties, since the latter is missing from XEmacs. Fixes issue 462. R=rsc CC=golang-dev http://codereview.appspot.com/181152 Committer: Russ Cox <rsc@golang.org>
2010-01-05Update Emacs go-mode for new semicolon rule.Austin Clements1-41/+57
Fixes issue 415. R=rsc CC=golang-dev http://codereview.appspot.com/183104 Committer: Russ Cox <rsc@golang.org>
2009-11-29Make comment-start/-end changes buffer-local instead of global.Austin Clements1-2/+2
Fixes issue 290. R=rsc http://codereview.appspot.com/160070 Committer: Russ Cox <rsc@golang.org>
2009-11-13Correct indentation for go-mode where a close brace following a semi-James Aguilar1-4/+15
colon-less statement would be indented one stop too many. R=rsc, aclements CC=aclements http://codereview.appspot.com/154096 Committer: Russ Cox <rsc@golang.org>
2009-11-12Teach emacs M-x gofmt to save region/restrictionsKevin Ballard1-1/+12
R=agl, agl1 http://codereview.appspot.com/152078 Committer: Adam Langley <agl@golang.org>
2009-11-10Implement new emacs command M-x gofmtKevin Ballard1-0/+6
Define a new interactive function in go-mode.el called gofmt. This function passes the current buffer through the external `gofmt` tool and replaces the buffer with the result. R=agl, rsc http://codereview.appspot.com/154044 Committer: Russ Cox <rsc@golang.org>
2009-11-10Fix go-mode.el to work on empty buffersKevin Ballard1-1/+1
Fixes issue 8. R=agl, agl1, rsc http://codereview.appspot.com/153056 Committer: Russ Cox <rsc@golang.org>
2009-10-22go-mode for Emacs. This provides basic syntax highlightingAustin Clements2-0/+509
for keywords, built-ins, functions, and some types. It also provides indentation that is (almost) identical to gofmt. R=rsc APPROVED=rsc DELTA=509 (509 added, 0 deleted, 0 changed) OCL=35951 CL=35994