fish/functions/eln.fish @ f6bdfbdf747e

More
author Steve Losh <steve@stevelosh.com>
date Wed, 27 Mar 2024 15:17:47 -0400
parents 6ba110080a93
children (none)
function eln -d "Edit lab notes"
    pushd ~/lab
    hg pull -u
    nvim README.markdown
    hg ci -m 'Update'
    hg push
    popd
end