Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.24 KB

README.org

File metadata and controls

47 lines (32 loc) · 1.24 KB

hyperkitty.el

https://melpa.org/packages/hyperkitty-badge.svg

An emacs package for reading public mailing list archives hosted via Hyperkitty.

Currently, this is a WIP and can only fetch and list emails in a new buffer.

Usage

In order to use this, you can install it from Melpa:

M-x package-install RET hyperkitty

If you aren’t using MELPA repository already, you can do so by adding the following to your Emacs’s init file:

(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)

After that, add this to your emacs init file to choose MailingLists:

(require 'hyperkitty)
(setq hyperkitty-mlists
      (list
       (cons "[email protected]" "https://lists.mailman3.org/archives")))

Then, you need to only start using by running M-x hyperkitty.

Keybindings

Thread List view

  • RET: Open the thread in a new buffer.
  • q: Quit the current buffer.

Thread view

  • RET, TAB: Toggle expand and collapse the email at cursor.
  • q: Quit the current buffer.
  • o: Open the current thread in a browser.