fish/functions/epp.fish @ 639612e93fe8

More
author Steve Losh <steve@stevelosh.com>
date Mon, 24 Jun 2019 16:16:16 -0700
parents 844194673385
children (none)
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