miller/go/.vimrc
John Kerl 6f507fd111
First-class functions: starting with sort (#675)
* Add MT_FUNC as Mlrval tpe

* Rename AST node-type FunctionDefinition to NamedFunctionDefintion

* Add UnnamedFunctionDefinition AST node type

* First-class-function bits in the BNF grammar

* BNF mods for first-class functions

* CST mods for first-class functions
2021-09-28 01:21:04 -04:00

3 lines
170 B
VimL

map \d :w<C-m>:!clear;echo Building ...; echo; go build<C-m>
map \f :w<C-m>:!clear;echo Building ...; echo; build<C-m>
map \T :w<C-m>:!clear;go test mlr/src/lib/...<C-m>