fish/functions/idea.fish @ a8ceb657d88f

More
author Steve Losh <steve@stevelosh.com>
date Tue, 14 Jan 2020 13:32:24 -0500
parents 5cc299c204c4
children (none)
function idea -d "Record an idea"
    hg -R ~/.plan pull -u
    echo $argv >> ~/.plan/IDEAS.txt
    hg -R ~/.plan ci -m 'Update'
    hg -R ~/.plan push
    hg -R ~/.plan push git
end