Skip to content

Instantly share code, notes, and snippets.

@Nostravinci
Nostravinci / Delete-all-tags-on-TaskPaper-entry
Last active August 29, 2015 14:05
TaskPaper — delete all tags on the selected entry
--I've made an AppleScript that will delete all tags on the selected entry. This helps to quickly clean an entry up, so you can start over with it.
tell application "TaskPaper"
tell front document
tell selected entry
delete every tag
end tell
end tell
end tell