aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-toot.el
Commit message (Collapse)AuthorAgeFilesLines
...
* error msg on attempt to boost private toot. FIXES #383marty hiatt2023-01-281-2/+7
|
* differentiate edit toot from new tootmarty hiatt2023-01-161-5/+7
|
* buffer-spec for toot-edits history and add check to get-buffer-typemarty hiatt2023-01-161-2/+6
|
* toot--send: simplify edit-p checkmarty hiatt2023-01-151-6/+5
|
* remove insert call in toot--most-restritive-vismarty hiatt2023-01-141-1/+0
|
* Merge pull request 'Add option to set the default reply visibility' (#370) ↵martianh2023-01-101-1/+23
|\ | | | | | | | | | | from boynux/mastodon.el:default-reply-visibility into develop Reviewed-on: https://codeberg.org/martianh/mastodon.el/pulls/370
| * Add option to set the default reply visibilityMoha2023-01-011-1/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | remove first empty line in docstringsmarty hiatt2023-01-091-5/+1
| |
* | tl--action-success: only move point if it was on bylinemarty hiatt2023-01-071-3/+5
| | | | | | | | FIX #326
* | docstringsmarty hiatt2022-12-301-2/+2
|/
* Only add scheduled_at parameter to toot params when non-nilToke Høiland-Jørgensen2022-12-261-11/+13
| | | | | | | | | The Pleroma server software can't handle the scheduled_at parameter being set to anything other than a valid datetime, even an empty value. To work around this, change mastodon-toot--send to only add the parameter to the list of args if its non-nil. Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
* Merge branch 'develop' into fix-two-spaces-in-replymartianh2022-12-261-7/+13
|\
| * further harden custom emoji regex filteringBas Alberts2022-12-221-2/+2
| | | | | | | | | | | | | | Prevent empty string shortcodes from creating dotfiles inside the custom emoji download dir to prevent e.g. ".envrc" and other such contextual dotfiles from being created in the legitimate download location.
| * fix for custom emoji path traversalBas Alberts2022-12-231-7/+13
| |
* | Merge branch 'develop' into fix-two-spaces-in-replyemocoder2022-12-191-35/+139
|\|
| * Use mastodon-toot--count-toot-chars when validating toot lengthSacha Chua2022-12-081-1/+1
| | | | | | | | | | * lisp/mastodon-toot.el (mastodon-toot--send): Use mastodon-toot--count-toot-chars instead of length.
| * update comment re completion fetchingmarty hiatt2022-12-021-4/+2
| |
| * factor fetch candidates fun, try to improve completion performancemarty hiatt2022-12-011-13/+21
| |
| * completion - bound the --get-bounds backward regex searchmarty hiatt2022-12-011-1/+5
| | | | | | | | | | | | this prevents matching when we have type words after a handle/tag (forward-whitespace -1) places point before the previous space. placing it after doesn't work, it breaks some completion cases.
| * schedule-toot - comment to acknowledge ctmarty hiatt2022-11-301-0/+2
| |
| * make rescheduling without editing work, also with org-read-datemarty hiatt2022-11-291-5/+11
| |
| * display value of --scheduled-for in org-read-date if setmarty hiatt2022-11-291-3/+13
| |
| * cancel original scheduled toot if edited/rescheduledmarty hiatt2022-11-291-2/+11
| |
| * edit toot: use set-toot-propertiesmarty hiatt2022-11-291-5/+4
| |
| * add var scheduled-id, so we can cancel it if we reschedulemarty hiatt2022-11-291-3/+8
| |
| * refactor set toot properties, autoloads, docstrings, fixesmarty hiatt2022-11-291-9/+26
| |
| * set-toot-lang > -languagemarty hiatt2022-11-291-2/+2
| |
| * work on scheduling toots, editing as new, display scheduled tsmarty hiatt2022-11-291-8/+39
| |
| * abbreviate toot compose properties (visibility, char count etc)marty hiatt2022-11-291-3/+3
| |
| * tweak scheduled toot message string date formatmarty hiatt2022-11-291-1/+1
| |
| * add schedule toot function + bindingmarty hiatt2022-11-281-4/+14
| |
| * Merge commit 'pullreqs/335' into schedule-tootsmarty hiatt2022-11-281-1/+6
| |\
| | * add mastodon-toot--scheduled-at buffer-local variable to optionally schedule ↵Christian Tietze2022-11-261-1/+6
| | | | | | | | | | | | posts
* | | Update docstrings to match the current state.Dmitry Osipov2022-12-011-5/+8
| | |
* | | Move mentions concatenation into a function for a reply.Dmitry Osipov2022-12-011-23/+24
| | |
* | | Remove double white-space in the reply modeDmitry Osipov2022-11-281-4/+4
|/ / | | | | | | | | | | | | When you start a reply (to a local user or federated), there's one extra white-space after the list of mentioned users: `@user1@host.local @user2@host.federated__` (the underscores represent white-spaces). This PR removes the extra space.
* | update copyright/author attributionmarty hiatt2022-11-271-0/+1
| |
* | compose buffer - display language selection only when selectedmarty hiatt2022-11-271-1/+12
| |
* | try to declare company-mode-onmarty hiatt2022-11-271-1/+3
| |
* | autoloads and docstringsmarty hiatt2022-11-271-3/+3
| |
* | remove stray company funs in search.elmarty hiatt2022-11-261-2/+1
| |
* | Merge branch 'develop' into filter-follow-by-langmarty hiatt2022-11-261-21/+20
|\|
| * always use mastodon-tl--symbolmarty hiatt2022-11-261-20/+18
| |
| * toot--set-toot-lang docstringmarty hiatt2022-11-251-1/+2
| |
* | filter user posts by language. NB: we flip mastodon-iso-639-1!marty hiatt2022-11-251-7/+4
|/
* move mastodon-toot-completions to top of filemarty hiatt2022-11-251-3/+3
|
* Merge branch 'develop' into capf-completionmarty hiatt2022-11-251-0/+1
|\
| * docstrings and autoloadsmarty hiatt2022-11-241-0/+1
| |
| * Merge branch 'params-always-in-http-el' into developmarty hiatt2022-11-241-4/+5
| |\
* | | remove all company backends, use company-capf + use-company custommarty hiatt2022-11-251-161/+21
| | |