Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexjgriffith/mastodon-future.el
Some modules to add to mastodon once #84 has been resolved
https://github.com/alexjgriffith/mastodon-future.el
Last synced: 18 days ago
JSON representation
Some modules to add to mastodon once #84 has been resolved
- Host: GitHub
- URL: https://github.com/alexjgriffith/mastodon-future.el
- Owner: alexjgriffith
- License: gpl-3.0
- Created: 2017-04-28T13:39:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T16:50:12.000Z (over 6 years ago)
- Last Synced: 2024-10-08T03:41:23.207Z (about 1 month ago)
- Language: Emacs Lisp
- Homepage:
- Size: 82 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mastodon-future
Add the following to your init file``` elisp
(require 'mastodon)(add-to-list 'load-path "path-to-modules/mastodon-future.el/lisp/")
(require 'mastodon-async)
(require 'mastodon-inspect)
(require 'mastodon-profile)
(require 'mastodon-notifications)(define-key mastodon-mode-map (kbd "D") #'mastodon-inspect--toot)
(define-key mastodon-mode-map (kbd "U") #'mastodon-profile--get-next-author)
(define-key mastodon-mode-map (kbd "N") #'mastodon-notifications--get)
```There is also an alternate toot-renderer. Note that it has **NOT** been fully integraeted with all time line funcitonality.
``` elsip
(require 'mastodon-render)
```