# HG changeset patch
# User Steve Losh <steve@stevelosh.com>
# Date 1598889120 14400
# Node ID 613dc4aa9f255b7aa00cad0be07e4176e9dc0516
# Parent  f89078a3dc080503d39e8146ada5c0156a2da776
More

diff -r f89078a3dc08 -r 613dc4aa9f25 bin/doc
--- a/bin/doc	Fri Aug 07 14:12:06 2020 -0400
+++ b/bin/doc	Mon Aug 31 11:52:00 2020 -0400
@@ -5,7 +5,7 @@
 LANG=$1
 shift
 
-if test "$LANG" -eq "go"; then
+if test "$LANG" = "go"; then
     LANG=golang
 fi
 
diff -r f89078a3dc08 -r 613dc4aa9f25 fish/functions/ep.fish
--- a/fish/functions/ep.fish	Fri Aug 07 14:12:06 2020 -0400
+++ b/fish/functions/ep.fish	Mon Aug 31 11:52:00 2020 -0400
@@ -6,7 +6,6 @@
         make
         cat README.markdown | sed -En 'H; /^## [0-9]{4}-[0-9]{2}-[0-9]{2}/h; ${g;p;}' | tail +3 > ~/.plan
         git cm 'Update' -a
-        git push origin master
     case '*'
         hg pull -u
         nvim README.markdown
diff -r f89078a3dc08 -r 613dc4aa9f25 vim/custom-dictionary.utf-8.add
--- a/vim/custom-dictionary.utf-8.add	Fri Aug 07 14:12:06 2020 -0400
+++ b/vim/custom-dictionary.utf-8.add	Mon Aug 31 11:52:00 2020 -0400
@@ -309,3 +309,4 @@
 deduplicating
 passlist
 golang
+lifecycle
diff -r f89078a3dc08 -r 613dc4aa9f25 vim/vimrc
--- a/vim/vimrc	Fri Aug 07 14:12:06 2020 -0400
+++ b/vim/vimrc	Mon Aug 31 11:52:00 2020 -0400
@@ -1504,6 +1504,8 @@
     au FileType go iabbrev <buffer> erstr if err != nil {<cr>return "", err<esc>jA
     au FileType go iabbrev <buffer> ererr if err != nil {<cr>return err<esc>jA
     au FileType go iabbrev <buffer> erpan if err != nil {<cr>panic(err)<esc>jA
+
+    au FileType gohtmltmpl setlocal shiftwidth=4
 augroup END
 
 " }}}