Skip to content

Instantly share code, notes, and snippets.

@freklov
Created April 1, 2017 17:46
Show Gist options
  • Select an option

  • Save freklov/83cc1135549a98741a621b0dbff090eb to your computer and use it in GitHub Desktop.

Select an option

Save freklov/83cc1135549a98741a621b0dbff090eb to your computer and use it in GitHub Desktop.
Applescript for Things: Copy selected to dos to clipboard
# things-todos_to_clipboard frekolv 04/01/2017
# Copy selected to dos into clipboard
set itemsList to {}
tell application "Things"
repeat with todoItem in selected to dos
set textTodo to name of todoItem
copy textTodo & return to end of the itemsList
set the clipboard to textTodo
end repeat
set the clipboard to itemsList as text
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment