aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-toot.el
Commit message (Collapse)AuthorAgeFilesLines
...
| | * 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
| | |
* | | Merge branch 'develop' into capf-completionmarty hiatt2022-11-241-5/+8
|\ \ \
| * | | display icon for boostsmarty hiatt2022-11-241-1/+1
| | | | | | | | | | | | | | | | will later follow rougier's lead on this, but just wanted to see how it looked
| * | | Merge branch 'params-always-in-http-el' into developmarty hiatt2022-11-241-4/+5
| |\ \ \ | | |/ / | |/| / | | |/
| | * rename build-query-string to -params-str, + build-array-params-alistmarty hiatt2022-11-221-3/+3
| | |
| | * fix some tests due to paramsmarty hiatt2022-11-221-0/+1
| | |
| | * params always in http.el, only ever send alists from elsewhere.marty hiatt2022-11-211-1/+1
| | | | | | | | | | | | probably incomplete but mostly done.
| * | use unicode star if poss for faves. --return-fave-charmarty hiatt2022-11-231-1/+3
| | |
* | | add annotation to completions (URL for tag, username for mention)marty hiatt2022-11-241-11/+36
| | | | | | | | | | | | this is still rough, uses a defvar-local which may be avoidable.
* | | clean up compose-buffer capf control flowmarty hiatt2022-11-231-11/+28
| | |
* | | disable company completion by defaultmarty hiatt2022-11-231-1/+1
| | |
* | | working capf completionmarty hiatt2022-11-231-27/+25
| | |
* | | a first go at capf completion backends for mentions and tagsmarty hiatt2022-11-221-20/+67
| | | | | | | | | | | | | | | the regex searches still fail sometimes, and completions don't show urls or usernames like the old company backends.
* | | defvar mastodon-toot-tag-regexmarty hiatt2022-11-221-5/+11
| | |
* | | a rough crack at handling company to capf conversion if cape/corfumarty hiatt2022-11-221-6/+16
|/ /
* | only enable company-mode if corfu-mode is offmarty hiatt2022-11-221-1/+2
| | | | | | | | they conflict and hang the buffer. see #314
* | copy-toot-url/text - handle fave/boost notifsmarty hiatt2022-11-221-4/+10
| |
* | set toot language in compose buffermarty hiatt2022-11-221-3/+10
| | | | | | | | | | | | | | | | like the other settings, we just save to a buffer local variable then fetch it to send manual testing shows that delete and redraft preserves and repeats the setting.
* | choose language, return ISO codemarty hiatt2022-11-221-1/+12
|/
* Merge branch 'edit-posts' into developmarty hiatt2022-11-211-9/+94
|\
| * display edit timestamp in byline, function to view toot historymarty hiatt2022-11-211-12/+35
| |
| * toot--edited-atmarty hiatt2022-11-211-0/+7
| |
| * get toot editsmarty hiatt2022-11-211-0/+8
| |
| * docstrings + autoloadsmarty hiatt2022-11-211-5/+6
| |
| * edit toot at pointmarty hiatt2022-11-211-5/+51
| | | | | | | | | | | | edit from notifs we fetch 'base-toot or 'toot-json
* | delete/redraft/pin toots from notificationsmarty hiatt2022-11-201-2/+4
|/ | | | we simply fetch 'base-toot or 'toot-json
* mastodon-handle-regex: use for company + propertizingmarty hiatt2022-11-201-15/+33
|
* http--post - make args + headers optional argsmarty hiatt2022-11-191-2/+2
| | | | also update all calls to it, no need for nil nil everywhere.
* toot count: URLs = 23 chars, handes = no domainmarty hiatt2022-11-191-10/+33
|
* toot.el -- separator for all funs but company backendsmarty hiatt2022-11-191-17/+17
|
* -- separator for profile/tl funs in other filesmarty hiatt2022-11-181-5/+5
|
* tweak toot prop mentions regexmarty hiatt2022-11-171-3/+7
|
* flycheck -toot.elmarty hiatt2022-11-171-4/+6
|