fish/functions/ep.fish @ ebc3de263271
Dick around with batchcolor a bit more
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 06 Jan 2020 22:56:40 -0800 |
parents |
5233df61134b |
children |
613dc4aa9f25 |
function ep -d "Edit .plan"
cd ~/plan
switch (hostname)
case alephnull
nvim README.markdown
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
cat README.markdown | sed -En 'H; /^## [0-9]{4}-[0-9]{2}-[0-9]{2}/h; ${g;p;}' | tail +3 > ~/.plan
hg ci -m 'Update'
hg push
hg push git
end
cd -
end