summary refs log tree commit diff stats
path: root/lisp/+org.el
diff options
context:
space:
mode:
authorCase Duckworth2022-02-06 22:16:51 -0600
committerCase Duckworth2022-02-06 22:17:02 -0600
commita1be3555bc54bd15af19bc97882e4b1fde7dcb2a (patch)
tree2feff74cd745e0fb84158ea9ba099450ce722013 /lisp/+org.el
parentCorrect elfeed-async script (diff)
downloademacs-a1be3555bc54bd15af19bc97882e4b1fde7dcb2a.tar.gz
emacs-a1be3555bc54bd15af19bc97882e4b1fde7dcb2a.zip
Add org sms support
Diffstat (limited to 'lisp/+org.el')
-rw-r--r--lisp/+org.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/+org.el b/lisp/+org.el index 48b3d42..be5a37f 100644 --- a/lisp/+org.el +++ b/lisp/+org.el
@@ -417,6 +417,10 @@ the deletion might narrow the column."
417 "Notify the user of what phone NUMBER to call." 417 "Notify the user of what phone NUMBER to call."
418 (message "Call: %s" number)) 418 (message "Call: %s" number))
419 419
420(defun +org-sms-open (number _)
421 "Notify the user of what phone NUMBER to text."
422 (message "SMS: %s" number))
423
420;; Make a horizontal rule! 424;; Make a horizontal rule!
421 425
422(defun +org-horizontal-rule () 426(defun +org-horizontal-rule ()