fish/functions/el.fish @ 62e329839625

Merge
author Steve Losh <steve@stevelosh.com>
date Wed, 27 Aug 2025 16:19:24 -0400
parents cf74bfa5845a
children (none)
function el -d "Edit lab notes"
    pushd ~/lab
    ./pull.sh
    nvim README.markdown
    hg ci -m 'Update'
    ./push.sh
    popd
end