--- 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
--- 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
--- 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
--- 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
" }}}