GitXplorerGitXplorer
m

hyperkitty.el

public
6 stars
2 forks
2 issues

Commits

List of commits on branch master.
Verified
2c1d22ff017d096c359aa151e6a29f7214a58118

Update copyright year.

mmaxking committed 3 years ago
Verified
ad65766fee2675bf123491544707b056b89b52ce

Add keybinding to open current thread in browser. (#14)

mmaxking committed 4 years ago
Verified
164ab988ef001c2613160b08063c31a4c35a2564

Add a new reply button and button to open message in browser. (#13)

mmaxking committed 4 years ago
Verified
7d8d1ede1224e6446bbcf393e3fded087c985086

Update elisp.yaml

mmaxking committed 4 years ago
Verified
ccc4d4721af20351a442f5cffad20eba64cb47fa

Create more checks

mmaxking committed 4 years ago
Verified
fcb923616e69d8f72c2f4a666d381a6a66bc12bc

Rename emails mode map to fix the keybindings. (#11)

mmaxking committed 4 years ago

README

The README file for this repository.
  • hyperkitty.el

[[https://melpa.org/#/hyperkitty][file:https://melpa.org/packages/hyperkitty-badge.svg]]

An emacs package for reading public mailing list archives hosted via [[https://hyperkitty.readthedocs.io][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 [[https://melpa.org/#/hyperkitty][Melpa]]:

#+begin_src M-x package-install RET hyperkitty #+end_src

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

#+begin_src elisp (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) #+end_src

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

#+begin_src emacs-lisp (require 'hyperkitty) (setq hyperkitty-mlists (list (cons "test@mailman3.org" "https://lists.mailman3.org/archives"))) #+end_src

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.