From baa5ae92733ce95ea5036ca6b18575ebfa80af9b Mon Sep 17 00:00:00 2001 From: Moha Date: Sat, 31 Dec 2022 18:02:44 +0100 Subject: Add option to set the default reply visibility This change introduces a new option `mastodon-toot-default-reply-visibility`. The default is set to "Public". Replies will be defaulted to the value of this parameter unless the original toot has a more restrictive visiblity. For example: with `mastodon-toot--default-reply-visibility` set to "unlisted" - Original post visibility: public - Reply default visibility: unlinsted - Original post visbility: private (only-followers) - Repy default visibility: private --- README.org | 3 +++ 1 file changed, 3 insertions(+) (limited to 'README.org') diff --git a/README.org b/README.org index 85ff179..35ebb99 100644 --- a/README.org +++ b/README.org @@ -263,6 +263,9 @@ work without first loading =mastodon.el=: - =mastodon-profile--account-sensitive-toggle=: Toggle whether your posts are marked as sensitive (nsfw) by default. +- =mastodon-toot--default-reply-visibility=: Set the default visibility for replies. + This visibility is used only when the original post has less restrictive visibility. + *** Customization See =M-x customize-group RET mastodon= to view all customize options. -- cgit v1.2.3 From b8cf48227809612c578aa011ddf821a8c6f6ce41 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 10 Jan 2023 12:08:16 +1100 Subject: readme update - mastodon-alt --- README.org | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'README.org') diff --git a/README.org b/README.org index 85ff179..34a47d6 100644 --- a/README.org +++ b/README.org @@ -227,7 +227,7 @@ You can download and use your instance's custom emoji *** Other commands and account settings: -In addition to =mastodon=, the following functions are autoloaded and should +In addition to =mastodon=, the following three functions are autoloaded and should work without first loading =mastodon.el=: - =mastodon-toot=: Compose new toot - =mastodon-notifications-get=: View all notifications @@ -280,6 +280,12 @@ See =M-x customize-group RET mastodon= to view all customize options. - Enable custom emoji - Display toot being replied to +*** Alternative timeline layout + +The incomparable Nicholas Rougier has written an alternative timeline layout for =mastodon.el=. + +The repo is at https://github.com/rougier/mastodon-alt. + *** Live-updating timelines: =mastodon-async-mode= (code taken from https://github.com/alexjgriffith/mastodon-future.el.) -- cgit v1.2.3 From 0db46a8da2af73bc07ac36be43777c522cbfb57d Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 10 Jan 2023 12:12:25 +1100 Subject: readme: move default-reply-visibility --- README.org | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'README.org') diff --git a/README.org b/README.org index 53278aa..49e65a9 100644 --- a/README.org +++ b/README.org @@ -263,9 +263,6 @@ work without first loading =mastodon.el=: - =mastodon-profile--account-sensitive-toggle=: Toggle whether your posts are marked as sensitive (nsfw) by default. -- =mastodon-toot--default-reply-visibility=: Set the default visibility for replies. - This visibility is used only when the original post has less restrictive visibility. - *** Customization See =M-x customize-group RET mastodon= to view all customize options. @@ -282,6 +279,7 @@ See =M-x customize-group RET mastodon= to view all customize options. - Completion style for mentions and tags - Enable custom emoji - Display toot being replied to + - Set default reply visibility *** Alternative timeline layout -- cgit v1.2.3 From 3b35b51a36976d64bc3368d6bd8cce5edb350839 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Wed, 11 Jan 2023 00:23:48 +1100 Subject: customize number of posts displayed in a timeline or account view FIXES #363 --- README.org | 1 + lisp/mastodon-profile.el | 3 ++- lisp/mastodon-tl.el | 18 ++++++++++++++---- 3 files changed, 17 insertions(+), 5 deletions(-) (limited to 'README.org') diff --git a/README.org b/README.org index 49e65a9..dfbb95c 100644 --- a/README.org +++ b/README.org @@ -269,6 +269,7 @@ See =M-x customize-group RET mastodon= to view all customize options. - Timeline options: - Use proportional fonts + - Default number of posts displayed - Timestamp format - Relative timestamps - Display user avatars diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 7e3262a..f96ecb5 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -621,7 +621,8 @@ FIELDS means provide a fields vector fetched by other means." NO-REBLOGS means do not display boosts in statuses. HEADERS means also fetch link headers for pagination." (let* ((id (mastodon-profile--account-field account 'id)) - (args (when no-reblogs '(("exclude_reblogs" . "t")))) + (args `(("limit" . ,mastodon-tl--timeline-posts-count))) + (args (if no-reblogs (push '("exclude_reblogs" . "t") args) args)) (endpoint (format "accounts/%s/%s" id endpoint-type)) (url (mastodon-http--api endpoint)) (acct (mastodon-profile--account-field account 'acct)) diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 1ec0208..a86a7e6 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -157,6 +157,11 @@ Valid values are: (const :tag "Keep original position of point" keep-point) (const :tag "The last toot before the new ones" last-old-toot))) +(defcustom mastodon-tl--timeline-posts-count "20" + "Number of posts to display when loading a timeline. +Must be an integer between 20 and 40 inclusive." + :type '(string)) + (defvar-local mastodon-tl--update-point nil "When updating a mastodon buffer this is where new toots will be inserted. If nil `(point-min)' is used instead.") @@ -395,14 +400,16 @@ Used on initializing a timeline or thread." (interactive) (message "Loading federated timeline...") (mastodon-tl--init - "federated" "timelines/public" 'mastodon-tl--timeline)) + "federated" "timelines/public" 'mastodon-tl--timeline nil + `(("limit" . ,mastodon-tl--timeline-posts-count)))) (defun mastodon-tl--get-home-timeline () "Opens home timeline." (interactive) (message "Loading home timeline...") (mastodon-tl--init - "home" "timelines/home" 'mastodon-tl--timeline)) + "home" "timelines/home" 'mastodon-tl--timeline nil + `(("limit" . ,mastodon-tl--timeline-posts-count)))) (defun mastodon-tl--get-local-timeline () "Opens local timeline." @@ -410,7 +417,8 @@ Used on initializing a timeline or thread." (message "Loading local timeline...") (mastodon-tl--init "local" "timelines/public" 'mastodon-tl--timeline - nil '(("local" . "true")))) + nil `(("local" . "true") + ("limit" . ,mastodon-tl--timeline-posts-count)))) (defun mastodon-tl--get-tag-timeline () "Prompt for tag and opens its timeline." @@ -424,7 +432,9 @@ Used on initializing a timeline or thread." (defun mastodon-tl--show-tag-timeline (tag) "Opens a new buffer showing the timeline of posts with hastag TAG." (mastodon-tl--init - (concat "tag-" tag) (concat "timelines/tag/" tag) 'mastodon-tl--timeline)) + (concat "tag-" tag) (concat "timelines/tag/" tag) + 'mastodon-tl--timeline nil + `(("limit" . ,mastodon-tl--timeline-posts-count)))) (defun mastodon-tl--message-help-echo () "Call message on 'help-echo property at point. -- cgit v1.2.3 From df46317f64d943ce8d4c786c970100b6a94f3515 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Fri, 13 Jan 2023 09:46:17 +0100 Subject: readme --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.org') diff --git a/README.org b/README.org index dfbb95c..7dcc731 100644 --- a/README.org +++ b/README.org @@ -358,7 +358,7 @@ PRs, issues, feature requests, and general feedback are very welcome! (it probably does). 4. Enable debug on error (=toggle-debug-on-error=), make the bug happen again, and copy the backtrace that appears. -5. Open an issue here and explain what is going on. +5. Open an issue here and explain what is going on. Provide your emacs version and what kind of server your account is on. *** Fixes and features -- cgit v1.2.3 From 061771766f1f9f10d1f33b4120eda4814256c664 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Fri, 13 Jan 2023 12:17:59 +0100 Subject: readme: coding style pointers --- README.org | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.org') diff --git a/README.org b/README.org index 7dcc731..b151c04 100644 --- a/README.org +++ b/README.org @@ -367,6 +367,13 @@ PRs, issues, feature requests, and general feedback are very welcome! 3. Run the tests and ensure that your code doesn't break any of them. 4. Create a pull request referencing the issue created in step 1. +*** coding style + +- This library uses an unconvential double dash (=--=) between file namespaces and function names, which contradicts normal Elisp style. This needs to be respected until the whole library is changed. +- Use =aggressive-indent-mode= or similar to keep your code indented. +- Single spaces end sentences in docstrings. +- There's no need for a blank line after the first docstring line (one is added automatically when documentation is displayed). + ** Supporting mastodon.el If you'd like to support continued development of =mastodon.el=, I accept -- cgit v1.2.3 From 5ceeb3d3a55223139051f72935531a1758871501 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Fri, 13 Jan 2023 12:51:11 +0100 Subject: readme: paypalme --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.org') diff --git a/README.org b/README.org index b151c04..05f80fa 100644 --- a/README.org +++ b/README.org @@ -377,7 +377,7 @@ PRs, issues, feature requests, and general feedback are very welcome! ** Supporting mastodon.el If you'd like to support continued development of =mastodon.el=, I accept -donations via paypal at martianhiatus [ at ] riseup [ dot ] net. If you would +donations via paypal: https://paypal.me/martianh. If you would prefer a different payment method, write to me at that address and I can provide IBAN or other details. -- cgit v1.2.3 From defb84daea4fe52b06fa21759c8c2b221bb6db0e Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sun, 15 Jan 2023 18:05:46 +0100 Subject: readme - show toc --- README.org | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'README.org') diff --git a/README.org b/README.org index 05f80fa..efea201 100644 --- a/README.org +++ b/README.org @@ -1,5 +1,3 @@ -#+OPTIONS: toc:nil - @@html: MELPA@@ @@html: Build Status@@ @@ -217,7 +215,7 @@ You can download and use your instance's custom emoji | =C-c C-l= | Set toot language | |---------+----------------------------------| -**** draft toots +**** Draft toots - Compose buffer text is saved as you type, kept in =mastodon-toot-current-toot-text=. - =mastodon-toot--save-draft=: save the current toot as a draft. @@ -336,7 +334,7 @@ Optional dependencies: - =mpv= and =mpv.el= for viewing videos and gifs - =lingva.el= for translating toots -** Network compatibility. +** Network compatibility =mastodon.el= should work with ActivityPub servers that implement the Mastodon API. @@ -367,14 +365,14 @@ PRs, issues, feature requests, and general feedback are very welcome! 3. Run the tests and ensure that your code doesn't break any of them. 4. Create a pull request referencing the issue created in step 1. -*** coding style +*** Coding style - This library uses an unconvential double dash (=--=) between file namespaces and function names, which contradicts normal Elisp style. This needs to be respected until the whole library is changed. - Use =aggressive-indent-mode= or similar to keep your code indented. - Single spaces end sentences in docstrings. - There's no need for a blank line after the first docstring line (one is added automatically when documentation is displayed). -** Supporting mastodon.el +** Supporting =mastodon.el= If you'd like to support continued development of =mastodon.el=, I accept donations via paypal: https://paypal.me/martianh. If you would @@ -383,7 +381,7 @@ provide IBAN or other details. I don't have a tech worker's income, so even a small tip would help out. -** Contributors: +** Contributors =mastodon.el= is the work of a number of people. -- cgit v1.2.3 From d4bc063e085c402e73f0acb7c790573fab68727a Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sun, 15 Jan 2023 18:19:46 +0100 Subject: readme alt text for paypal link --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.org') diff --git a/README.org b/README.org index efea201..6bed845 100644 --- a/README.org +++ b/README.org @@ -375,7 +375,7 @@ PRs, issues, feature requests, and general feedback are very welcome! ** Supporting =mastodon.el= If you'd like to support continued development of =mastodon.el=, I accept -donations via paypal: https://paypal.me/martianh. If you would +donations via paypal: [[https://paypal.me/martianh][paypal.me/martianh]]. If you would prefer a different payment method, write to me at that address and I can provide IBAN or other details. -- cgit v1.2.3 From bf7a1b445003f7e15d1e2b38f7635de142df19d1 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Mon, 16 Jan 2023 16:05:08 +0100 Subject: view instance binding --- README.org | 127 +++++++++++++++++++++++----------------------- lisp/mastodon-discover.el | 3 +- lisp/mastodon.el | 1 + 3 files changed, 67 insertions(+), 64 deletions(-) (limited to 'README.org') diff --git a/README.org b/README.org index 6bed845..e182aa7 100644 --- a/README.org +++ b/README.org @@ -107,69 +107,70 @@ not contain =:client_id= and =:client_secret=. **** Keybindings -|----------------+-----------------------------------------------------------------------| -| Key | Action | -|----------------+-----------------------------------------------------------------------| -| | *Help* | -| =?= | Open context menu if =discover= is available | -|----------------+-----------------------------------------------------------------------| -| | *Timeline actions* | -| =n= | Go to next item (toot, notification) | -| =p= | Go to previous item (toot, notification) | -| =M-n=/== | Go to the next interesting thing that has an action | -| =M-p=/== | Go to the previous interesting thing that has an action | -| =F= | Open federated timeline | -| =H= | Open home timeline | -| =L= | Open local timeline | -| =N= | Open notifications timeline | -| =@= | Open mentions-only notifications timeline | -| =u= | Update current timeline | -| =T= | Open thread for toot under =point= | -| =#= | Prompt for tag and open its timeline | -| =A= | Open author profile of toot under =point= | -| =P= | Open profile of user attached to toot under =point= | -| =O= | View own profile | -| =U= | update your profile bio note | -|----------------+-----------------------------------------------------------------------| -| | *Other views* | -| =S= | search (posts, users, tags) (NB: only posts you have interacted with) | -| =I=, =c=, =d= | view, create, and delete filters | -| =R=, =a=, =j= | view/accept/reject follow requests | -| =G= | view follow suggestions | -| =V= | view your favourited toots | -| =K= | view bookmarked toots | -| =X= | view/edit/create/delete lists | -|----------------+-----------------------------------------------------------------------| -| | *Toot actions* | -| =t= | Compose a new toot | -| =c= | Toggle content warning content | -| =b= | Boost toot under =point= | -| =f= | Favourite toot under =point= | -| =k= | toggle bookmark of toot at point | -| =r= | Reply to toot under =point= | -| =v= | Vote on poll at point | -| =C= | copy url of toot at point | -| =C-RET= | play video/gif at point (requires =mpv=) | -| =e= | edit your toot at point | -| =E= | view edits of toot at point | -| =i= | (un)pin your toot at point | -| =d= | delete your toot at point, and reload current timeline | -| =D= | delete and redraft toot at point, preserving reply/CW/visibility | -| (=S-C-=) =W=, =M=, =B= | (un)follow, (un)mute, (un)block author of toot at point | -|----------------+-----------------------------------------------------------------------| -| | *Profile view* | +|----------------+---------------------------------------------------------------------------| +| Key | Action | +|----------------+---------------------------------------------------------------------------| +| | *Help* | +| =?= | Open context menu if =discover= is available | +|----------------+---------------------------------------------------------------------------| +| | *Timeline actions* | +| =n= | Go to next item (toot, notification) | +| =p= | Go to previous item (toot, notification) | +| =M-n=/== | Go to the next interesting thing that has an action | +| =M-p=/== | Go to the previous interesting thing that has an action | +| =F= | Open federated timeline | +| =H= | Open home timeline | +| =L= | Open local timeline | +| =N= | Open notifications timeline | +| =@= | Open mentions-only notifications timeline | +| =u= | Update current timeline | +| =T= | Open thread for toot under =point= | +| =#= | Prompt for tag and open its timeline | +| =A= | Open author profile of toot under =point= | +| =P= | Open profile of user attached to toot under =point= | +| =O= | View own profile | +| =U= | update your profile bio note | +|----------------+---------------------------------------------------------------------------| +| | *Other views* | +| =S= | search (posts, users, tags) (NB: only posts you have interacted with) | +| =I=, =c=, =d= | view, create, and delete filters | +| =R=, =a=, =j= | view/accept/reject follow requests | +| =G= | view follow suggestions | +| =V= | view your favourited toots | +| =K= | view bookmarked toots | +| =X= | view/edit/create/delete lists | +| =s= | view your scheduled toots | +|----------------+---------------------------------------------------------------------------| +| | *Toot actions* | +| =t= | Compose a new toot | +| =c= | Toggle content warning content | +| =b= | Boost toot under =point= | +| =f= | Favourite toot under =point= | +| =k= | toggle bookmark of toot at point | +| =r= | Reply to toot under =point= | +| =v= | Vote on poll at point | +| =C= | copy url of toot at point | +| =C-RET= | play video/gif at point (requires =mpv=) | +| =e= | edit your toot at point | +| =E= | view edits of toot at point | +| =i= | (un)pin your toot at point | +| =d= | delete your toot at point, and reload current timeline | +| =D= | delete and redraft toot at point, preserving reply/CW/visibility | +| (=S-C-=) =W=, =M=, =B= | (un)follow, (un)mute, (un)block author of toot at point | +|----------------+---------------------------------------------------------------------------| +| | *Profile view* | | =C-c C-c= | cycle between statuses, followers, following, and statuses without boosts | -| | =mastodon-profile--account-account-to-list= (see lists view) | -|----------------+-----------------------------------------------------------------------| -| | *Notifications view* | -| =a=, =j= | accept/reject follow request | -| =c= | clear notification at point | -| | see =mastodon-notifications--get-*= functions for filtered views | -|----------------+-----------------------------------------------------------------------| -| | *Quitting* | -| =q= | Quit mastodon buffer, leave window open | -| =Q= | Quit mastodon buffer and kill window | -|----------------+-----------------------------------------------------------------------| +| | =mastodon-profile--account-account-to-list= (see lists view) | +|----------------+---------------------------------------------------------------------------| +| | *Notifications view* | +| =a=, =j= | accept/reject follow request | +| =c= | clear notification at point | +| | see =mastodon-notifications--get-*= functions for filtered views | +|----------------+---------------------------------------------------------------------------| +| | *Quitting* | +| =q= | Quit mastodon buffer, leave window open | +| =Q= | Quit mastodon buffer and kill window | +|----------------+---------------------------------------------------------------------------| **** Toot byline legend @@ -301,7 +302,7 @@ view a timeline with one of the commands that begin with *** Translating toots -You can translate toots with =mastodon-toot--translate-toot-text=. At the moment +You can translate toots with =mastodon-toot--translate-toot-text= (=a= in a timeline). At the moment this requires [[https://codeberg.org/martianh/lingva.el][lingva.el]], a little interface I wrote to https://lingva.ml, to be installed to work. diff --git a/lisp/mastodon-discover.el b/lisp/mastodon-discover.el index f16cdf6..b3819ed 100644 --- a/lisp/mastodon-discover.el +++ b/lisp/mastodon-discover.el @@ -91,7 +91,8 @@ ("G" "View follow suggestions" mastodon-tl--get-follow-suggestions) ("I" "View filters" mastodon-tl--view-filters) ("X" "View lists" mastodon-tl--view-lists) - ("s" "View scheduled toots" mastodon-tl--view-scheduled-toots)) + ("s" "View scheduled toots" mastodon-tl--view-scheduled-toots) + (";" "View instance description" mastodon-tl--view-instance-description)) ("Users" ("W" "Follow" mastodon-tl--follow-user) ("C-S-W" "Unfollow" mastodon-tl--unfollow-user) diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 384c4c3..1c3136c 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -206,6 +206,7 @@ Use. e.g. \"%c\" for your locale's date and time format." (define-key map (kbd "a") #'mastodon-toot--translate-toot-text)) (define-key map (kbd "s") #'mastodon-tl--view-scheduled-toots) (define-key map (kbd "M-C-q") #'mastodon-kill-all-buffers) + (define-key map (kbd ";") #'mastodon-tl--view-instance-description) map) "Keymap for `mastodon-mode'.") -- cgit v1.2.3 From 94b59e6a6adbd0cdbe842a79df1806c1715425cb Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sat, 28 Jan 2023 12:09:56 +0100 Subject: readme updates readme --- README.org | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'README.org') diff --git a/README.org b/README.org index e182aa7..b46b8b5 100644 --- a/README.org +++ b/README.org @@ -111,7 +111,7 @@ not contain =:client_id= and =:client_secret=. | Key | Action | |----------------+---------------------------------------------------------------------------| | | *Help* | -| =?= | Open context menu if =discover= is available | +| =?= | Show discover menu of all bindings, if =discover= is available | |----------------+---------------------------------------------------------------------------| | | *Timeline actions* | | =n= | Go to next item (toot, notification) | @@ -124,12 +124,13 @@ not contain =:client_id= and =:client_secret=. | =N= | Open notifications timeline | | =@= | Open mentions-only notifications timeline | | =u= | Update current timeline | -| =T= | Open thread for toot under =point= | +| =T= | Open thread for toot at point | | =#= | Prompt for tag and open its timeline | -| =A= | Open author profile of toot under =point= | -| =P= | Open profile of user attached to toot under =point= | +| =A= | Open author profile of toot at point | +| =P= | Open profile of user attached to toot at point | | =O= | View own profile | | =U= | update your profile bio note | +| =;= | view instance description for toot at point | |----------------+---------------------------------------------------------------------------| | | *Other views* | | =S= | search (posts, users, tags) (NB: only posts you have interacted with) | @@ -241,6 +242,9 @@ work without first loading =mastodon.el=: instance. +- =mastodon-tl--add-toot-account-at-point-to-list=: Add the account of the toot at point to a list. + + - =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. @@ -274,6 +278,7 @@ See =M-x customize-group RET mastodon= to view all customize options. - Display user avatars - Avatar image height - Enable image caching + - Hide replies in timelines - Compose options: - Completion style for mentions and tags -- cgit v1.2.3 From 025fd4f246226b78fd0e4a676570962258b2db4f Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sat, 28 Jan 2023 16:28:13 +0100 Subject: readme boosters/favouriters --- README.org | 2 ++ 1 file changed, 2 insertions(+) (limited to 'README.org') diff --git a/README.org b/README.org index b46b8b5..a8540fe 100644 --- a/README.org +++ b/README.org @@ -131,6 +131,8 @@ not contain =:client_id= and =:client_secret=. | =O= | View own profile | | =U= | update your profile bio note | | =;= | view instance description for toot at point | +| =,= | view favouriters of toot at point | +| =.= | view boosters of toot at point | |----------------+---------------------------------------------------------------------------| | | *Other views* | | =S= | search (posts, users, tags) (NB: only posts you have interacted with) | -- cgit v1.2.3 From d4099022438f4446cd1dff2ecfc1d5d85017a0b6 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 28 Feb 2023 21:11:49 +0100 Subject: readme re mastodon-switch-to-buffer --- README.org | 3 +++ 1 file changed, 3 insertions(+) (limited to 'README.org') diff --git a/README.org b/README.org index a8540fe..608d279 100644 --- a/README.org +++ b/README.org @@ -252,6 +252,9 @@ work without first loading =mastodon.el=: - =mastodon-tl--list-followed-tags=: View a list of tags you're following. +- =mastodon-switch-to-buffer=: switch between mastodon buffers. + + - =mastodon-profile--update-display-name=: Update the display name for your account. - =mastodon-profile--update-user-profile-note=: Update your bio note. -- cgit v1.2.3