fish/functions/el.fish @ f77ee236cdf3

More
author Steve Losh <steve@stevelosh.com>
date Thu, 23 May 2024 13:50:23 -0400
parents 1e75bf5d6f48
children cf74bfa5845a
function el -d "Edit lab notes"
    pushd ~/lab
    hg pull -u
    nvim README.markdown
    hg ci -m 'Update'
    hg push
    popd
end