From 8f8d362c3b7d65b69e2043f175388c438239d30b Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Mon, 20 May 2024 09:42:25 -0500 Subject: kshrc: Move out capture, log,todo --- kshrc | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'kshrc') diff --git a/kshrc b/kshrc index 45516c5..695619b 100644 --- a/kshrc +++ b/kshrc @@ -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)" -- cgit v1.2.3