aboutsummaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org23
1 files changed, 22 insertions, 1 deletions
diff --git a/README.org b/README.org
index d26b6f8..a1cbc4d 100644
--- a/README.org
+++ b/README.org
@@ -194,7 +194,7 @@ not contain =:client_id= and =:client_secret=.
=M-x mastodon-toot= (or =t= from a mastodon.el buffer).
-Pops a new buffer/window in =mastodon-toot= minor mode. Enter the
+Pops a new buffer/window in =text-mode= and =mastodon-toot= minor mode. Enter the
contents of your toot here. =C-c C-c= sends the toot. =C-c C-k= cancels.
Both actions kill the buffer and window.
@@ -207,6 +207,17 @@ Server's max toot length, and attachment previews, are shown.
You can download and use your instance's custom emoji
(=mastodon-toot--download-custom-emoji=, =mastodon-toot--enable-custom-emoji=).
+The compose buffer uses =text-mode= so any configuration you have for that mode
+will be enabled. If any of your existing config conflicts with =mastodon-toot=,
+you can disable it in the =mastodon-toot-mode-hook=. For example, the default
+value of that hook is as follows:
+
+#+begin_src emacs-lisp
+(add-hook 'mastodon-toot-mode-hook
+ (lambda ()
+ (auto-fill-mode -1)))
+#+end_src
+
**** Keybindings
|---------+----------------------------------|
@@ -252,6 +263,16 @@ work without first loading =mastodon.el=:
- =mastodon-tl--add-toot-account-at-point-to-list=: Add the account of the toot at point to a list.
+- =mastodon-tl--dm-user=: Send a direct message to one of the users at point.
+
+
+- =mastodon-profile--add-private-note-to-account=: Add a private note to another user’s account.
+- =mastodon-profile--view-account-private-note=: View a private note on a user’s account.
+
+
+- =mastodon-profile--show-familiar-followers=: Show a list of “familiar followers” for a given account. Familiar followers are accounts that you follow, and that follow the account.
+
+
- =mastodon-tl--follow-tag=: Follow a tag (works like following a user)
- =mastodon-tl--unfollow-tag=: Unfollow a tag
- =mastodon-tl--list-followed-tags=: View a list of tags you're following.