This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; attempt to add mailplane support | |
| (defcustom org-mailplane-url-protocol "mailplane" | |
| "Protocol identifier for Mailplane links." | |
| :group 'org-mailplane | |
| :type 'string) | |
| (defun org-mailplane-follow (email-id) | |
| "Open mailplane with given EMAIL-ID." | |
| (browse-url (concat "mailplane:" email-id))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bb | |
| (ns stask.todoist | |
| (:require | |
| [clojure.tools.cli :as tools.cli] | |
| [org.httpkit.client :as client] | |
| [cheshire.core :as json] | |
| [clojure.string :as string])) | |
| (def cl-options |
OlderNewer