263 lines
11 KiB
EmacsLisp
263 lines
11 KiB
EmacsLisp
|
|
;;; evil-collection-notmuch.el --- Bindings for `notmuch' -*- lexical-binding: t -*-
|
||
|
|
|
||
|
|
;; Copyright (C) 2017 James Nguyen
|
||
|
|
|
||
|
|
;; Author: James Nguyen <james@jojojames.com>
|
||
|
|
;; Maintainer: James Nguyen <james@jojojames.com>
|
||
|
|
;; Pierre Neidhardt <mail@ambrevar.xyz>
|
||
|
|
;; URL: https://github.com/emacs-evil/evil-collection
|
||
|
|
;; Version: 0.0.1
|
||
|
|
;; Package-Requires: ((emacs "29.1"))
|
||
|
|
;; Keywords: emacs, tools, evil
|
||
|
|
|
||
|
|
;; This program is free software; you can redistribute it and/or modify
|
||
|
|
;; it under the terms of the GNU General Public License as published by
|
||
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
||
|
|
;; (at your option) any later version.
|
||
|
|
|
||
|
|
;; This program is distributed in the hope that it will be useful,
|
||
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
;; GNU General Public License for more details.
|
||
|
|
|
||
|
|
;; You should have received a copy of the GNU General Public License
|
||
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
|
||
|
|
;;; Commentary:
|
||
|
|
;;; Bindings for `notmuch'.
|
||
|
|
|
||
|
|
;;; Code:
|
||
|
|
(require 'notmuch nil t)
|
||
|
|
(require 'evil-collection)
|
||
|
|
|
||
|
|
(defcustom evil-collection-notmuch-delete-tag "deleted"
|
||
|
|
"Tag toggled by the delete bindings (`d') in notmuch modes.
|
||
|
|
|
||
|
|
Defaults to \"deleted\" for backwards compatibility with the self-hosted
|
||
|
|
notmuch convention where a cron job removes files matching `tag:deleted'.
|
||
|
|
|
||
|
|
Set to \"trash\" when syncing with services that map a Trash tag/label
|
||
|
|
back to the server (e.g. lieer/Gmail's TRASH label, or an IMAP setup
|
||
|
|
that moves trashed messages out of the inbox)."
|
||
|
|
:type 'string
|
||
|
|
:group 'evil-collection-notmuch)
|
||
|
|
|
||
|
|
(declare-function notmuch-show-get-tags "notmuch-show")
|
||
|
|
(declare-function notmuch-show-tag "notmuch-show")
|
||
|
|
(declare-function notmuch-search-get-tags "notmuch")
|
||
|
|
(declare-function notmuch-search-tag "notmuch")
|
||
|
|
(declare-function notmuch-tree-tag "notmuch-tree")
|
||
|
|
|
||
|
|
(declare-function widget-field-at "wid-edit")
|
||
|
|
(declare-function widget-field-activate "wid-edit")
|
||
|
|
(declare-function widget-button-press "wid-edit")
|
||
|
|
|
||
|
|
;; Since all the other maps in `evil-collection-notmuch-maps`
|
||
|
|
;; have notmuch-common-keymap as parent
|
||
|
|
;; https://git.notmuchmail.org/git?p=notmuch;a=blob;f=emacs/notmuch-hello.el;h=fa31694ff0f79a7f2781849394390a673f75aade;hb=HEAD#l651
|
||
|
|
;;
|
||
|
|
;; When `evil-collection-setup-hook` runs, if it changes keymaps
|
||
|
|
;; using a `dolist` over `evil-collection-notmuch-maps`, then a binding might
|
||
|
|
;; see 2 changes at once. To avoid that, notmuch-common-keymap is last
|
||
|
|
(defconst evil-collection-notmuch-maps '(notmuch-hello-mode-map
|
||
|
|
notmuch-show-mode-map
|
||
|
|
notmuch-show-part-map
|
||
|
|
notmuch-tree-mode-map
|
||
|
|
notmuch-search-mode-map
|
||
|
|
notmuch-search-stash-map
|
||
|
|
notmuch-common-keymap))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-toggle-tag (tag mode &optional next-function)
|
||
|
|
"Toggle TAG tag for message in MODE."
|
||
|
|
(let ((get (intern (format "notmuch-%s-get-tags" mode)))
|
||
|
|
(set (intern (format "notmuch-%s-tag" mode)))
|
||
|
|
(next (or next-function (intern (format "notmuch-%s-next-message" mode)))))
|
||
|
|
(funcall set (list (concat (if (member tag (funcall get))
|
||
|
|
"-" "+")
|
||
|
|
tag)))
|
||
|
|
(funcall next)))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-show-toggle-delete ()
|
||
|
|
"Toggle `evil-collection-notmuch-delete-tag' for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag evil-collection-notmuch-delete-tag "show"))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-tree-toggle-delete ()
|
||
|
|
"Toggle `evil-collection-notmuch-delete-tag' for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag evil-collection-notmuch-delete-tag "tree"))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-search-toggle-delete ()
|
||
|
|
"Toggle `evil-collection-notmuch-delete-tag' for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag evil-collection-notmuch-delete-tag "search" 'notmuch-search-next-thread))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-tree-toggle-unread ()
|
||
|
|
"Toggle unread tag for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag "unread" "tree"))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-search-toggle-unread ()
|
||
|
|
"Toggle unread tag for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag "unread" "search" 'notmuch-search-next-thread))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-show-toggle-flagged ()
|
||
|
|
"Toggle flagged tag for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag "flagged" "show"))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-tree-toggle-flagged ()
|
||
|
|
"Toggle flagged tag for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag "flagged" "tree"))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-search-toggle-flagged ()
|
||
|
|
"Toggle flagged tag for message."
|
||
|
|
(interactive)
|
||
|
|
(evil-collection-notmuch-toggle-tag "flagged" "search" 'notmuch-search-next-thread))
|
||
|
|
|
||
|
|
(defun evil-collection-notmuch-hello-ret ()
|
||
|
|
(interactive)
|
||
|
|
(if (widget-field-at (point))
|
||
|
|
(call-interactively #'widget-field-activate)
|
||
|
|
(call-interactively #'widget-button-press)))
|
||
|
|
|
||
|
|
;;;###autoload
|
||
|
|
(defun evil-collection-notmuch-setup ()
|
||
|
|
"Set up `evil' bindings for `notmuch'."
|
||
|
|
(evil-collection-inhibit-insert-state 'notmuch-show-mode-map)
|
||
|
|
(evil-collection-inhibit-insert-state 'notmuch-search-mode-map)
|
||
|
|
(evil-collection-inhibit-insert-state 'notmuch-tree-mode-map)
|
||
|
|
|
||
|
|
(evil-set-initial-state 'notmuch-show-mode 'normal)
|
||
|
|
(evil-set-initial-state 'notmuch-search-mode 'normal)
|
||
|
|
(evil-set-initial-state 'notmuch-hello-mode 'normal)
|
||
|
|
(evil-set-initial-state 'notmuch-tree-mode 'normal)
|
||
|
|
|
||
|
|
(evil-collection-bind 'notmuch-common-keymap 'describe-mode 'notmuch-help)
|
||
|
|
|
||
|
|
(evil-collection-define-key 'normal 'notmuch-common-keymap
|
||
|
|
"S" 'notmuch-tree
|
||
|
|
"C" 'notmuch-mua-new-mail ; like mu4e
|
||
|
|
"cc" 'notmuch-mua-new-mail ; like mu4e
|
||
|
|
"gA" 'notmuch-refresh-all-buffers)
|
||
|
|
(evil-collection-bind 'notmuch-common-keymap
|
||
|
|
'quit 'notmuch-bury-or-kill-this-buffer
|
||
|
|
'refresh 'notmuch-refresh-this-buffer
|
||
|
|
'refresh-all 'notmuch-poll-and-refresh-this-buffer
|
||
|
|
'jump 'notmuch-jump-search
|
||
|
|
'search-or-filter 'notmuch-search)
|
||
|
|
(evil-collection-bind 'notmuch-hello-mode-map
|
||
|
|
'describe-mode 'notmuch-version
|
||
|
|
'cycle-next 'widget-forward
|
||
|
|
'cycle-previous 'widget-backward
|
||
|
|
'action 'evil-collection-notmuch-hello-ret)
|
||
|
|
|
||
|
|
(evil-collection-define-key 'normal 'notmuch-show-mode-map
|
||
|
|
"p" 'notmuch-show-save-attachments ; like mu4e
|
||
|
|
"A" 'notmuch-show-archive-thread-then-next
|
||
|
|
"S" 'notmuch-show-filter-thread
|
||
|
|
"K" 'notmuch-tag-jump
|
||
|
|
"C" 'notmuch-mua-new-mail ; like mu4e
|
||
|
|
"cc" 'notmuch-mua-new-mail ; like mu4e
|
||
|
|
"cR" 'notmuch-show-reply
|
||
|
|
"cf" 'notmuch-show-forward-message
|
||
|
|
"X" 'notmuch-show-archive-thread-then-exit
|
||
|
|
"zv" 'notmuch-tree-from-show-current-query ; like mu4e-conversation
|
||
|
|
"<" 'notmuch-show-toggle-thread-indentation
|
||
|
|
"a" 'notmuch-show-archive-message-then-next-or-next-thread
|
||
|
|
"d" 'evil-collection-notmuch-show-toggle-delete
|
||
|
|
"=" 'evil-collection-notmuch-show-toggle-flagged
|
||
|
|
"H" 'notmuch-show-toggle-visibility-headers
|
||
|
|
(kbd "M-j") 'notmuch-show-next-thread-show
|
||
|
|
(kbd "M-k") 'notmuch-show-previous-thread-show
|
||
|
|
"cr" 'notmuch-show-reply-sender
|
||
|
|
(kbd "x") 'notmuch-show-archive-message-then-next-or-exit
|
||
|
|
"|" 'notmuch-show-pipe-message
|
||
|
|
"*" 'notmuch-show-tag-all
|
||
|
|
"-" 'notmuch-show-remove-tag
|
||
|
|
"+" 'notmuch-show-add-tag
|
||
|
|
"." 'notmuch-show-part-map)
|
||
|
|
(evil-collection-bind 'notmuch-show-mode-map
|
||
|
|
'next-button 'notmuch-show-next-button
|
||
|
|
'previous-button 'notmuch-show-previous-button
|
||
|
|
'action 'notmuch-show-toggle-message
|
||
|
|
'next-item 'notmuch-show-next-open-message
|
||
|
|
'prev-item 'notmuch-show-previous-open-message
|
||
|
|
'next-section 'notmuch-show-next-message
|
||
|
|
'prev-section 'notmuch-show-previous-message
|
||
|
|
'next-section-2 'notmuch-show-next-message
|
||
|
|
'prev-section-2 'notmuch-show-previous-message
|
||
|
|
'find-definition 'goto-address-at-point)
|
||
|
|
|
||
|
|
(evil-collection-bind 'notmuch-tree-mode-map
|
||
|
|
'describe-mode 'notmuch-help
|
||
|
|
'jump 'notmuch-jump-search)
|
||
|
|
|
||
|
|
(evil-collection-define-key 'normal 'notmuch-tree-mode-map
|
||
|
|
"S" 'notmuch-tree-to-search
|
||
|
|
"C" 'notmuch-mua-new-mail ; like mu4e
|
||
|
|
"cc" 'notmuch-mua-new-mail ; like mu4e
|
||
|
|
"zv" 'notmuch-search-from-tree-current-query ; like mu4e-conversation
|
||
|
|
"cr" 'notmuch-show-reply-sender ; like mu4e
|
||
|
|
"cR" 'notmuch-show-reply
|
||
|
|
"d" 'evil-collection-notmuch-tree-toggle-delete
|
||
|
|
"!" 'evil-collection-notmuch-tree-toggle-unread
|
||
|
|
"=" 'evil-collection-notmuch-tree-toggle-flagged
|
||
|
|
"K" 'notmuch-tag-jump
|
||
|
|
[mouse-1] 'notmuch-tree-show-message
|
||
|
|
"A" 'notmuch-tree-archive-thread-then-next
|
||
|
|
"a" 'notmuch-tree-archive-message-then-next
|
||
|
|
"|" 'notmuch-show-pipe-message
|
||
|
|
"-" 'notmuch-tree-remove-tag
|
||
|
|
"+" 'notmuch-tree-add-tag
|
||
|
|
"*" 'notmuch-tree-tag-thread
|
||
|
|
"e" 'notmuch-tree-resume-message)
|
||
|
|
(evil-collection-bind 'notmuch-tree-mode-map
|
||
|
|
'action 'notmuch-tree-show-message
|
||
|
|
'next-item 'notmuch-tree-next-matching-message
|
||
|
|
'prev-item 'notmuch-tree-prev-matching-message
|
||
|
|
'next-section 'notmuch-tree-next-message
|
||
|
|
'prev-section 'notmuch-tree-prev-message
|
||
|
|
'next-section-2 'notmuch-tree-next-thread
|
||
|
|
'prev-section-2 'notmuch-tree-prev-thread
|
||
|
|
'quit 'notmuch-tree-quit
|
||
|
|
'search-or-filter 'notmuch-tree-to-tree)
|
||
|
|
|
||
|
|
(evil-collection-bind 'notmuch-search-mode-map 'jump 'notmuch-jump-search)
|
||
|
|
|
||
|
|
(dolist (state '(normal visual))
|
||
|
|
(evil-collection-define-key state 'notmuch-search-mode-map
|
||
|
|
"cC" 'compose-mail-other-frame
|
||
|
|
"S" 'notmuch-search-filter
|
||
|
|
"K" 'notmuch-tag-jump
|
||
|
|
"o" 'notmuch-search-toggle-order
|
||
|
|
"zv" 'notmuch-tree-from-search-current-query
|
||
|
|
"*" 'notmuch-search-tag-all
|
||
|
|
"a" 'notmuch-search-archive-thread
|
||
|
|
"cc" 'compose-mail ; like mu4e
|
||
|
|
"d" 'evil-collection-notmuch-search-toggle-delete
|
||
|
|
"!" 'evil-collection-notmuch-search-toggle-unread
|
||
|
|
"=" 'evil-collection-notmuch-search-toggle-flagged
|
||
|
|
"cr" 'notmuch-search-reply-to-thread-sender
|
||
|
|
"cR" 'notmuch-search-reply-to-thread
|
||
|
|
"t" 'notmuch-search-filter-by-tag
|
||
|
|
[mouse-1] 'notmuch-search-show-thread
|
||
|
|
"-" 'notmuch-search-remove-tag
|
||
|
|
"+" 'notmuch-search-add-tag))
|
||
|
|
(evil-collection-bind 'notmuch-search-mode-map
|
||
|
|
'action 'notmuch-search-show-thread
|
||
|
|
'quit 'notmuch-bury-or-kill-this-buffer)
|
||
|
|
|
||
|
|
;; ys
|
||
|
|
(evil-collection-define-operator-key 'yank 'notmuch-search-mode-map
|
||
|
|
"s" 'notmuch-search-stash-map)
|
||
|
|
|
||
|
|
;; ys
|
||
|
|
(evil-collection-define-operator-key 'yank 'notmuch-show-mode-map
|
||
|
|
"s" 'notmuch-show-stash-map))
|
||
|
|
|
||
|
|
(provide 'evil-collection-notmuch)
|
||
|
|
;;; evil-collection-notmuch.el ends here
|