Byte compile stuff
This commit is contained in:
@@ -200,7 +200,7 @@ CANDIDATE is the same as for `corfu-popupinfo--show'. As this is meant to be
|
||||
(frame-visible-p corfu-popupinfo--frame))
|
||||
(corfu--hide-frame corfu-popupinfo--frame))
|
||||
(when (or (not (ctp--visible-p))
|
||||
(not (corfu--equal-including-properties
|
||||
(not (equal-including-properties
|
||||
candidate corfu-popupinfo--candidate)))
|
||||
(let ((buf (ctp--get-buffer)))
|
||||
(if (ctp--load-content candidate buf)
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
;;; Commentary:
|
||||
;;; Code:
|
||||
(require 'comint)
|
||||
(require 'eieio)
|
||||
(require 'cl-lib)
|
||||
(require 'cc-mode)
|
||||
(require 'treesit)
|
||||
|
||||
@@ -13,10 +13,15 @@
|
||||
(require 'cl-lib)
|
||||
(require 'rx)
|
||||
|
||||
(defgroup org-mu4e nil
|
||||
"Edit mu4e messages with `org-mode'."
|
||||
:prefix "org-mu4e-")
|
||||
|
||||
(defcustom org-mu4e-preview-html-images t
|
||||
"If non-nil, render images in rendered HTML preview buffers.
|
||||
This can be toggled locally with `org-mu4e-toggle-preview-images'."
|
||||
:type 'boolean)
|
||||
:type 'boolean
|
||||
:group 'org-mu4e)
|
||||
|
||||
(defvar-local org-mu4e--html-message-p t
|
||||
"Weather or not the current message should be htmlized.")
|
||||
|
||||
@@ -3428,12 +3428,14 @@ This is the same as `evil-ret' except that it works for links in
|
||||
(evil-define-key 'normal mu4e-view-mode-map
|
||||
"R" #'org-mu4e-compose-reply
|
||||
"cr" #'org-mu4e-compose-reply
|
||||
"ce" #'org-mu4e-compose-edit)
|
||||
"ce" #'org-mu4e-compose-edit
|
||||
"C" #'org-mu4e-compose-new)
|
||||
(evil-define-key 'normal mu4e-headers-mode-map
|
||||
"R" #'org-mu4e-compose-reply
|
||||
"cr" #'org-mu4e-compose-reply
|
||||
"E" #'org-mu4e-compose-edit
|
||||
"ce" #'org-mu4e-compose-edit)
|
||||
"ce" #'org-mu4e-compose-edit
|
||||
"C" #'org-mu4e-compose-new)
|
||||
(evil-define-key 'normal mu4e-main-mode-map
|
||||
"C" #'compose-mail
|
||||
"cc" #'compose-mail)
|
||||
|
||||
Reference in New Issue
Block a user