fccbc17efadf
Merge.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Tue, 21 May 2019 10:23:36 -0400 |
parents | 844194673385 (diff) 8c524b57a91b (current diff) |
children | c15e0d8e066d |
branches/tags | (none) |
files |
Changes
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fish/functions/epp.fish Tue May 21 10:23:36 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