summaryrefslogtreecommitdiff
path: root/misc
AgeCommit message (Collapse)AuthorFilesLines
2010-01-27dashboard: look for key in $GOROOT before $HOMERuss Cox1-3/+6
TBR=agl1 CC=golang-dev http://codereview.appspot.com/195076
2010-01-27godashboard: fiddlingRuss Cox2-31/+59
* some tweaks to dashboard html/css layout * use hmac to generate per-builder subkeys R=agl1 CC=golang-dev http://codereview.appspot.com/194092
2010-01-26dashboard: add benchmarking support.Adam Langley6-12/+212
This has actually been running for a while and gathering benchmark data. I haven't had a chance to add a UI for it yet however. R=rsc CC=golang-dev http://codereview.appspot.com/194082 Committer: Russ Cox <rsc@golang.org>
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-12kate: Highlighting improvementsEvan Shaw1-4/+14
* Highlight built in functions * Add copy built in function * Handle multi-line strings R=rsc CC=golang-dev http://codereview.appspot.com/184059 Committer: Russ Cox <rsc@golang.org>
2010-01-07Add builder scripts.Adam Langley9-0/+697
These are the scripts behind godashboard.appspot.com. Nothing is particularly beautiful about it, but it does run. I still need to add support for per-builder keys and for running the benchmarks. R=rsc CC=golang-dev http://codereview.appspot.com/183153
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-12-30More Xcode support.Robert Griesemer1-0/+29
Recognize special comments starting with TODO or BUG. R=r CC=golang-dev http://codereview.appspot.com/183095
2009-12-29Improved Xcode supportKen Friedenbach1-2/+43
Added definition for raw string. Added definitions for function and method declarations. Enabled function, method, and type declarations to appear in Editor pop up menu. Fixes Issue 466. R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/183065 Committer: Robert Griesemer <gri@golang.org>
2009-12-15 1) Change default gofmt default settings forRobert Griesemer6-173/+173
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 1st set of files. R=rsc CC=agl, golang-dev, iant, ken2, r http://codereview.appspot.com/180047
2009-12-11Remove GOBIN in PATH dependency; don't assume cwd is $GOROOT/srcDevon H. O'Dell2-4/+5
This change removes the necessity to have GOBIN in $PATH, and also doesn't assume that the build is being run from $GOROOT/src. This is a minimal set of necessary changes to get Go to build happily from the FreeBSD ports collection. R=rsc CC=golang-dev http://codereview.appspot.com/171044 Committer: Russ Cox <rsc@golang.org>
2009-12-11misc/bash: completion file for bashRuss Cox1-0/+6
suggested by Alex Ray <ajray@ncsu.edu> R=gri CC=golang-dev http://codereview.appspot.com/174063
2009-12-01Add 'copy' as a Go builtin function for Vim syntax highlighter spec.David Symonds1-1/+1
R=rsc http://codereview.appspot.com/163049 Committer: Russ Cox <rsc@golang.org>
2009-11-30Syntax coloring and function navigation for BBEdit/TextWranglerAnthony Starks1-0/+65
R=rsc CC=agl1 http://codereview.appspot.com/154123 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-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia2-4/+4
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-18More FreeBSD-touchups. Thundercats are GOOOOO!Devon H. O'Dell1-2/+0
R=rsc CC=golang-dev http://codereview.appspot.com/157074 Committer: Russ Cox <rsc@golang.org>
2009-11-18make all.bash finish on FreeBSDRuss Cox1-0/+2
R=dho CC=golang-dev http://codereview.appspot.com/156067
2009-11-17Added Kate syntax highlighting file.Evan Shaw1-0/+129
R=rsc http://codereview.appspot.com/155075 Committer: Russ Cox <rsc@golang.org>
2009-11-17FreeBSD-specific porting work.Devon H. O'Dell1-2/+2
cgo/libmach remain unimplemented. However, compilers, runtime, and packages are 100%. I still need to go through and implement missing syscalls (at least make sure they're all listed), but for all shipped functionality, this is done. Ship! ;) R=rsc, VenkateshSrinivas http://codereview.appspot.com/152142 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-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-1/+1
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1024040
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer5-19/+19
R=rsc, r http://go/go-review/1025029
2009-11-06- one-line funcs in miscRobert Griesemer1-3/+1
gofmt -w misc R=rsc http://go/go-review/1025007
2009-11-05gofmt -w miscRobert Griesemer4-12/+11
R=rsc http://go/go-review/1025004
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
2009-10-14Minor fixes and additions to the GMP wrapping.Adam Langley1-1/+12
R=rsc APPROVED=rsc DELTA=12 (11 added, 0 deleted, 1 changed) OCL=35715 CL=35715
2009-10-03add cgo test that doesn't depend onRuss Cox4-1/+209
non-standard libraries and add to build. R=r DELTA=211 (210 added, 0 deleted, 1 changed) OCL=35293 CL=35307
2009-10-038c, 8l dynamic loading support.Russ Cox7-6/+177
better mach binaries. cgo working on darwin+linux amd64+386. eliminated context switches - pi is 30x faster. add libcgo to build. on snow leopard: - non-cgo binaries work; all tests pass. - cgo binaries work on amd64 but not 386. R=r DELTA=2031 (1316 added, 626 deleted, 89 changed) OCL=35264 CL=35304
2009-09-30cgo working on linux/386Russ Cox1-0/+6
R=r DELTA=70 (47 added, 4 deleted, 19 changed) OCL=35167 CL=35171
2009-09-30cgo: works on amd64.Russ Cox3-0/+490
integrated into Makefiles (see misc/cgo/gmp/Makefile). R=r DELTA=1110 (540 added, 525 deleted, 45 changed) OCL=35153 CL=35158
2009-09-29Add a Vim syntax highlighting file for Go.David Symonds1-0/+190
APPROVED=rsc DELTA=190 (190 added, 0 deleted, 0 changed) OCL=35073 CL=35128
2009-05-20xcode config files, self-describingRobert Griesemer2-0/+254
R=r DELTA=250 (250 added, 0 deleted, 0 changed) OCL=29120 CL=29127