From 23c5e3a66ab440c189c48692380f42a839f26e7b Mon Sep 17 00:00:00 2001 From: Ev Bogdanov Date: Wed, 15 Feb 2017 23:20:25 +0300 Subject: [PATCH] go+ --- README.md | 1 + bin/go+ | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100755 bin/go+ diff --git a/README.md b/README.md index 6887650..ce07ee3 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Who is who in **bin** directory: - `eman MODULE` shortcut for `erl -man MODULE` (displays the manual page for the Erlang module MODULE) - `g+ WHAT` recursively grep current directory - `git+ MESSAGE` git: commit and push to master +- `go+` go snippet - `h+` transform line to heading - `hg+ MESSAGE` hg: commit and push to master - `html+` html boilerplate diff --git a/bin/go+ b/bin/go+ new file mode 100755 index 0000000..58cb2a6 --- /dev/null +++ b/bin/go+ @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +cat << 'GO' +package main + +import ( + "fmt" +) + +func main() { + +} +GO