I hope this script is useful for QuickSilver users.
To install it:
To use it:
Here’s the script:
using terms from application "Quicksilver"
on process text tasks_text
tell application "TaskPaper"
tell front document
if not (exists project named "Inbox") then
make new project with properties {name:"Inbox"} at front of projects
end if
tell project named "Inbox"
repeat with each in paragraphs of tasks_text
make new entry with properties {text line:each}
end repeat
end tell
end tell
end tell
end process text
end using terms from