Anyone else having this problem?: 2.3 uses gawk for listcon and listproj, but gawk has been replaced with the following grep command: grep -w -o '@[^ ]\+'...
I am using GeekTool to output my todo.txt list on to the desktop, but I am getting strange garbage characters that I don't get in terminal or when I view the...
... Use the -p parameter to enable "plain mode," that is, no color codes (which is the "garbage" you're seeing). In the GeekTool call to todo.sh, just add -p...
... Here's the commit where we took out gawk and uniq, and some of the reasoning behind it (mostly just to remove the dependencies, grep is more widely...
... The idea of using -w is to bracket "words" and not catch (iirc) foo@... as a context. But yeah, I guess that's not POSIX. (Then again, neither is...
... Interesting. What's your LANG and LC* env variables look like? What version of grep are you using? set | egrep '^(LANG|LC)' grep --version Also, I have a...
... Yes, despite the fact that [^ ]* can match nothing, it's useful to have for those times when you want it to match the foo part. However, $ echo -e...
... yes indeed ... From my grep changelog I see for example that one, sounds appealing: 2005-11-10 Charles Levert <charles_levert@...> The introduction...
... Ah, fabulous. Thanks for looking that up. I've updated the commit message to indicate that. Gina, if Phil has no objections, please merge my fix-grep...
... Nice patch with regression tests, thanks for your time on that one! Just one remark: I'm always hesitant to use real email addresses anywhere it's not...
... Yes, that was a great patch Emil, esp the tests. I'm sorry I didn't wait to hear back from Phil--I was hot to merge this today, because it's the project's...
Wohooo! (I changed the title as the original announce was quite discrete) ... I wanted to say I'm also very happy of participating to this modest open-source...
Am trying to follow the instruction to edit the .cfg file, etc. as in this install guide: http://wiki.github.com/ginatrapani/todo.txt-cli/quick-start-guide But...
Hi Johnathan, Those instructions are designed for a system with some type of Unix/like command line interface installed. Line number 2 requires you to use a...
... Now that we have TODOTXT_FINAL_FILTER, this was fairly easy to implement: http://github.com/FND/todo.txt-cli/blob/extensions/futureTasks This script...
... I have a pre_filter_command that uses awk to do that. That way the "X of N tasks" is correct. I've been out of the loop with development, so maybe...
... It appears TODOTXT_FINAL_FILTER does the right thing, in- or decreasing X as required. (I'm not familiar with pre_filter_command myself.) Would you mind...
... Not at all. I've attached it. Ed # This script relies on the fact that a lexical sort of YYYY-MM-DD datestrings # produces the same result as a calendar...
... In the future, instead of attaching scripts, consider making a gist - http://gist.github.com/ Gists have a simple URL, they're versioned (and anyone can...
I've run into a somewhat annoying issue: The TODOTXT_FINAL_FILTER script is also used for listall, and there doesn't seem to be a way to differentiate this...
... Instead of setting TODOTXT_FINAL_FILTER in the config file, you could create a thin action override for "list" that just sets TODOTXT_FINAL_FILTER in the...
... If that's the way to do it, I have no objections. However, creating a list override seems to affect neither variations like listpri nor shortcuts like ls. ...
... Good idea, thanks Emil--Gists do appear to be a really neat way to swap pieces of code. -- http://ginatrapani.org http://twitter.com/ginatrapani...
I've taken Phil's code and ported it to the last 'master' branch. After a delay of several weeks, I finally found some time to work on this; as usual, it took...