diff options
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index b256a7c..aac580f 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -70,13 +70,17 @@ ;;;###autoload (defun mastodon () + "Connect Mastodon client to `mastodon-instance-url' instance." (interactive) (require 'mastodon-tl) (mastodon-tl--get "home")) ;;;###autoload (defun mastodon-toot (&optional user reply-to-id) - "Update a Mastodon instance with new toot. Content is captured in a new buffer." + "Update instance with new toot. Content is captured in a new buffer. + +If USER is non-nil, insert after @ symbol to begin new toot. +If REPLY-TO-ID is non-nil, attach new toot to a conversation." (interactive) (require 'mastodon-toot) (progn |