fish/functions/eln.fish @ 93d27886c099 default tip

More
author Steve Losh <steve@stevelosh.com>
date Sun, 18 May 2025 14:59:11 -0400
parents 45d837d285e2
children 6ba110080a93
function ep -d "Edit lab notes"
    pushd ~/lab
    hg pull -u
    nvim README.markdown
    hg ci -m 'Update'
    hg push
    popd
end