844194673385
epp
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Tue, 21 May 2019 10:23:29 -0400 |
parents | 3173592cfa27 |
children | fccbc17efadf |
branches/tags | (none) |
files | fish/functions/epp.fish |
Changes
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fish/functions/epp.fish Tue May 21 10:23:29 2019 -0400 @@ -0,0 +1,14 @@ +function epp -d "Edit personal .plan" + switch (hostname) + case alephnull + cd ~/.personal-plan + case '*' + cd ~/.plan + end + + hg pull -u + nvim README.markdown + hg ci -m 'Update' + hg pa + cd - +end