View Single Post
Quote:
Originally Posted by Guus View Post
I would like to have a little less info in the entry like:
- Afspraak Andries aanpassen @done(17:52)
You can certainly edit the output – simply adjust the print statements in:
Code:
{
    if (prj!=$5) {prj=$5;
        if (prj!="") {print ("\n" prj_prfx prj "[:](omnifocus:///task/" $2 ")") >> "tmp_pretty.txt" }
        else {print ("\nInbox[:](omnifocus:///task/" $1 ")") >> "tmp_pretty.txt"} 
  }
  if ($6!=prj) {print ("- " $6 " @done(" $4 ")") >> "tmp_pretty.txt"  }
  else {{print "- *Project completed* @done(" $4 ")"  >> "tmp_pretty.txt" }}
}
$6 contains the task and $4 contains the date.

You could reduce it right down to something like:

Code:
{
    print ("- " $6 " @done(" $4 ")") >> "tmp_pretty.txt" 
}
veel geluk !