fish/functions/ep.fish @ 25d490edffa6

Updates
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Oct 2018 17:21:20 -0700
parents 1cd90a0458e4
children 51b9c5b3b301
function ep -d "Edit .plan"
    switch (hostname)
    case alephnull
        cd ~/.plan
        nvim README.markdown
        git cm 'Update' -a
    case '*'
        hg -R ~/.plan pull -u
        nvim ~/.plan/README.markdown
        hg -R ~/.plan ci -m 'Update'
        hg -R ~/.plan push
        hg -R ~/.plan push git
    end
end