diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-20 09:42:25 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-20 09:42:25 -0500 |
commit | 8f8d362c3b7d65b69e2043f175388c438239d30b (patch) | |
tree | 198eb7904b98664ef7c5c09d856364ae80459b20 /kshrc | |
parent | 1e2fcbe20c72a87182dea115805738c3b20c4df5 (diff) | |
download | rcm-8f8d362c3b7d65b69e2043f175388c438239d30b.tar.gz rcm-8f8d362c3b7d65b69e2043f175388c438239d30b.tar.bz2 rcm-8f8d362c3b7d65b69e2043f175388c438239d30b.zip |
kshrc: Move out capture, log,todo
Diffstat (limited to 'kshrc')
-rw-r--r-- | kshrc | 40 |
1 files changed, 0 insertions, 40 deletions
@@ -12,46 +12,6 @@ alias de='eval "$(direnv export bash)"' alias f-commit="fossil commit && fossil git export" PS1='$(git branch 2> /dev/null | grep "^\*" | colrm 1 2 | sed -e "s/$/./")${PWD##*/} ' -function log { - JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org" - echo '* :journal:' > /tmp/capture - kak /tmp/capture +1:3 -e "execute-keys i" - if grep -q '^\*\s*:journal:' /tmp/capture - then - echo "Empty capture; ignoring" - else - echo "Storing capture in $JRNL" - cat /tmp/capture > $JRNL - fi -} - -function capture { - JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org" - echo '* ' > /tmp/capture - kak /tmp/capture +1:3 -e "execute-keys i" - if grep -q '^\*\s*$' /tmp/capture - then - echo "Empty capture; ignoring" - else - echo "Storing capture in $JRNL" - cat /tmp/capture > $JRNL - fi -} - -function todo { - TODO_BASE='* TODO ' - JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org" - echo '* TODO ' > /tmp/capture - kak /tmp/capture +1:8 -e "execute-keys i" - if grep -q '^\* TODO\s*$' /tmp/capture - then - echo "Empty capture" - else - echo "Storing capture in $JRNL" - cat /tmp/capture > $JRNL - fi -} - alias jrnl='stitch -t :journal:' eval "$(direnv export bash)" |