fish/functions/eln.fish @ b09db0d33e13

More
author Steve Losh <steve@stevelosh.com>
date Tue, 14 Nov 2023 09:58:32 -0500
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