summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2022-12-31 12:41:48 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-01-01 15:01:08 +0200
commit7fa8fe9165ff73fd520cfe01ed833e8d188f6c3e (patch)
tree159c58dc96d3146446d22ff36b18dcbb3f4f0c77
parent55added03b9328add9f0844ba53d132a3d39e225 (diff)
mu4e: whitespace updates
-rw-r--r--mu4e/mu4e-actions.el4
-rw-r--r--mu4e/mu4e-draft.el14
-rw-r--r--mu4e/mu4e-search.el136
-rw-r--r--mu4e/mu4e-server.el32
4 files changed, 54 insertions, 132 deletions
diff --git a/mu4e/mu4e-actions.el b/mu4e/mu4e-actions.el
index bd4b338..473a2df 100644
--- a/mu4e/mu4e-actions.el
+++ b/mu4e/mu4e-actions.el
@@ -42,7 +42,7 @@ Works for headers view and message-view."
(message "Number of lines: %s"
(shell-command-to-string
(concat "wc -l < "
- (shell-quote-argument (mu4e-message-field msg :path))))))
+ (shell-quote-argument (mu4e-message-field msg :path))))))
;;; Org Helpers
@@ -79,7 +79,7 @@ file where you store your org-contacts."
(mu4e-error "Variable `mu4e-org-contacts-file' is nil"))
(let* ((sender (car-safe (mu4e-message-field msg :from)))
(name (mu4e-contact-name sender))
- (email (mu4e-contact-email sender))
+ (email (mu4e-contact-email sender))
(blurb
(format
(concat
diff --git a/mu4e/mu4e-draft.el b/mu4e/mu4e-draft.el
index 847c12d..ca012a4 100644
--- a/mu4e/mu4e-draft.el
+++ b/mu4e/mu4e-draft.el
@@ -441,7 +441,7 @@ This is based on the variable `user-full-name' and
(when user-mail-address
(mu4e-contact-full (mu4e-contact-make
user-full-name
- user-mail-address))))
+ user-mail-address))))
;;; Header separators
@@ -466,17 +466,17 @@ separator is never written to the message file. Also see
;;'read-only "Can't touch this"
'rear-nonsticky t
'font-lock-face 'mu4e-compose-separator-face)))
- (widen)
- ;; search for the first empty line
- (goto-char (point-min))
- (if (search-forward-regexp "^$" nil t)
+ (widen)
+ ;; search for the first empty line
+ (goto-char (point-min))
+ (if (search-forward-regexp "^$" nil t)
(progn
(replace-match sepa)
;; `message-narrow-to-headers` searches for a
;; `mail-header-separator` followed by a new line. Therefore, we
;; must insert a newline if on the last line of the buffer.
(when (= (point) (point-max))
- (insert "\n")))
+ (insert "\n")))
(progn ;; no empty line? then prepend one
(goto-char (point-max))
(insert "\n" sepa))))))
@@ -576,7 +576,7 @@ mailing-list."
(recipnum
(+ (length (mu4e~draft-create-to-lst origmsg))
(length (mu4e~draft-create-cc-lst origmsg t t))))
- (sender (mu4e-contact-full (car from)))
+ (sender (mu4e-contact-full (car from)))
(reply-type
(mu4e-read-option
"Reply to mailing-list "
diff --git a/mu4e/mu4e-search.el b/mu4e/mu4e-search.el
index 10fdaba..fe150e4 100644
--- a/mu4e/mu4e-search.el
+++ b/mu4e/mu4e-search.el
@@ -141,14 +141,14 @@ message with that message-id after searching. If SHOW is non-nil,
show the message with MSGID."
(interactive)
(let* ((prompt (mu4e-format (or prompt "Search for: ")))
- (expr
- (if (or (null expr) edit)
- (mu4e-search-read-query prompt expr)
- expr)))
+ (expr
+ (if (or (null expr) edit)
+ (mu4e-search-read-query prompt expr)
+ expr)))
(mu4e-mark-handle-when-leaving)
(mu4e--search-execute expr ignore-history)
(setq mu4e--search-msgid-target msgid
- mu4e--search-view-target show)))
+ mu4e--search-view-target show)))
(defun mu4e-search-edit ()
"Edit the last search expression."
@@ -161,8 +161,8 @@ If EDIT is non-nil, let the user edit the bookmark before starting
the search."
(interactive)
(let ((expr
- (or expr
- (mu4e-ask-bookmark (if edit "Select bookmark: " "Bookmark: ")))))
+ (or expr
+ (mu4e-ask-bookmark (if edit "Select bookmark: " "Bookmark: ")))))
(run-hook-with-args 'mu4e-search-bookmark-hook expr)
(mu4e-search expr (when edit "Edit bookmark: ") edit)))
@@ -178,112 +178,34 @@ expression. Note that you can go back to the previous
query (effectively, \"widen\" it), with `mu4e-search-prev'."
(interactive
(let ((filter
- (read-string (mu4e-format "Narrow down to: ")
- nil 'mu4e~headers-search-hist nil t)))
+ (read-string (mu4e-format "Narrow down to: ")
+ nil 'mu4e~headers-search-hist nil t)))
(list filter)))
(unless mu4e--search-last-query
(mu4e-warn "There's nothing to filter"))
(mu4e-search (format "(%s) AND (%s)" mu4e--search-last-query filter)))
-;; (defun mu4e-headers-change-sorting (&optional field dir)
-;; "Change the sorting/threading parameters.
-;; FIELD is the field to sort by; DIR is a symbol: either 'ascending,
-;; 'descending, 't (meaning: if FIELD is the same as the current
-;; sortfield, change the sort-order) or nil (ask the user)."
-;; (interactive)
-;; (let* ((field
-;; (or field
-;; (mu4e-read-option "Sortfield: " mu4e~headers-sort-field-choices)))
-;; ;; note: 'sortable' is either a boolean (meaning: if non-nil, this is
-;; ;; sortable field), _or_ another field (meaning: sort by this other field).
-;; (sortable (plist-get (cdr (assoc field mu4e-header-info)) :sortable))
-;; ;; error check
-;; (sortable
-;; (if sortable
-;; sortable
-;; (mu4e-error "Not a sortable field")))
-;; (sortfield (if (booleanp sortable) field sortable))
-;; (dir
-;; (cl-case dir
-;; ((ascending descending) dir)
-;; ;; change the sort order if field = curfield
-;; (t
-;; (if (eq sortfield mu4e-headers-sort-field)
-;; (if (eq mu4e-headers-sort-direction 'ascending)
-;; 'descending 'ascending)
-;; 'descending))
-;; (mu4e-read-option "Direction: "
-;; '(("ascending" . 'ascending) ("descending" . 'descending))))))
-;; (setq
-;; mu4e-headers-sort-field sortfield
-;; mu4e-headers-sort-direction dir)
-;; (mu4e-message "Sorting by %s (%s)"
-;; (symbol-name sortfield)
-;; (symbol-name mu4e-headers-sort-direction))
-;; (mu4e-headers-rerun-search)))
-
-;; (defun mu4e~headers-toggle (name togglevar dont-refresh)
-;; "Toggle variable TOGGLEVAR for feature NAME. Unless DONT-REFRESH is non-nil,
-;; re-run the last search."
-;; (set togglevar (not (symbol-value togglevar)))
-;; (mu4e-message "%s turned %s%s"
-;; name
-;; (if (symbol-value togglevar) "on" "off")
-;; (if dont-refresh
-;; " (press 'g' to refresh)" ""))
-;; (unless dont-refresh
-;; (mu4e-headers-rerun-search)))
-
-;; (defun mu4e-headers-toggle-threading (&optional dont-refresh)
-;; "Toggle `mu4e-headers-show-threads'. With prefix-argument, do
-;; _not_ refresh the last search with the new setting for threading."
-;; (interactive "P")
-;; (mu4e~headers-toggle "Threading" 'mu4e-headers-show-threads dont-refresh))
-
-;; (defun mu4e-headers-toggle-full-search (&optional dont-refresh)
-;; "Toggle `mu4e-headers-full-search'. With prefix-argument, do
-;; _not_ refresh the last search with the new setting for threading."
-;; (interactive "P")
-;; (mu4e~headers-toggle "Full-search"
-;; 'mu4e-headers-full-search dont-refresh))
-
-;; (defun mu4e-headers-toggle-include-related (&optional dont-refresh)
-;; "Toggle `mu4e-headers-include-related'. With prefix-argument, do
-;; _not_ refresh the last search with the new setting for threading."
-;; (interactive "P")
-;; (mu4e~headers-toggle "Include-related"
-;; 'mu4e-headers-include-related dont-refresh))
-
-;; (defun mu4e-headers-toggle-skip-duplicates (&optional dont-refresh)
-;; "Toggle `mu4e-headers-skip-duplicates'. With prefix-argument, do
-;; _not_ refresh the last search with the new setting for threading."
-;; (interactive "P")
-;; (mu4e~headers-toggle "Skip-duplicates"
-;; 'mu4e-headers-skip-duplicates dont-refresh))
-
-
-
(defun mu4e--search-push-query (query where)
"Push QUERY to one of the query stacks.
WHERE is a symbol telling us where to push; it's a symbol, either
`future' or `past'. Also removes duplicates and truncates to
limit the stack size."
(let ((stack
- (pcase where
- ('past mu4e--search-query-past)
- ('future mu4e--search-query-future))))
+ (pcase where
+ ('past mu4e--search-query-past)
+ ('future mu4e--search-query-future))))
;; only add if not the same item
(unless (and stack (string= (car stack) query))
(push query stack)
;; limit the stack to `mu4e--search-query-stack-size' elements
(when (> (length stack) mu4e--search-query-stack-size)
- (setq stack (cl-subseq stack 0 mu4e--search-query-stack-size)))
+ (setq stack (cl-subseq stack 0 mu4e--search-query-stack-size)))
;; remove all duplicates of the new element
(seq-remove (lambda (elm) (string= elm (car stack))) (cdr stack))
;; update the stacks
(pcase where
- ('past (setq mu4e--search-query-past stack))
- ('future (setq mu4e--search-query-future stack))))))
+ ('past (setq mu4e--search-query-past stack))
+ ('future (setq mu4e--search-query-future stack))))))
(defun mu4e--search-pop-query (whence)
"Pop a query from the stack.
@@ -304,7 +226,7 @@ or `past'."
(interactive)
;; if possible, try to return to the same message
(let* ((msg (mu4e-message-at-point t))
- (msgid (and msg (mu4e-message-field msg :message-id))))
+ (msgid (and msg (mu4e-message-field msg :message-id))))
(mu4e-search mu4e--search-last-query nil nil t msgid)))
(defun mu4e--search-query-navigate (whence)
@@ -312,7 +234,7 @@ or `past'."
WHENCE determines where the query is taken from and is a symbol,
either `future' or `past'."
(let ((query (mu4e--search-pop-query whence))
- (where (if (eq whence 'future) 'past 'future)))
+ (where (if (eq whence 'future) 'past 'future)))
(when query
(mu4e--search-push-query mu4e--search-last-query where)
(mu4e-search query nil nil t))))
@@ -332,7 +254,7 @@ either `future' or `past'."
"Forget the search history."
(interactive)
(setq mu4e--search-query-past nil
- mu4e--search-query-future nil)
+ mu4e--search-query-future nil)
(mu4e-message "Query history cleared"))
(defun mu4e-last-query ()
@@ -352,9 +274,9 @@ either `future' or `past'."
"Read a query with completion using PROMPT and INITIAL-INPUT."
(minibuffer-with-setup-hook
(lambda ()
- (setq-local completion-at-point-functions
- #'mu4e--search-query-completion-at-point)
- (use-local-map mu4e-minibuffer-search-query-map))
+ (setq-local completion-at-point-functions
+ #'mu4e--search-query-completion-at-point)
+ (use-local-map mu4e-minibuffer-search-query-map))
(read-string prompt initial-input 'mu4e--search-hist)))
(defconst mu4e--search-query-keywords
@@ -378,24 +300,24 @@ status, STATUS."
((not (looking-back "[:\"][^ \t]*" nil))
(let ((bounds (bounds-of-thing-at-point 'word)))
(list (or (car bounds) (point))
- (or (cdr bounds) (point))
- mu4e--search-query-keywords)))
+ (or (cdr bounds) (point))
+ mu4e--search-query-keywords)))
((looking-back "flag:\\(\\w*\\)" nil)
(list (match-beginning 1)
- (match-end 1)
- '("attach" "draft" "flagged" "list" "new" "passed" "replied"
- "seen" "trashed" "unread" "encrypted" "signed" "personal")))
+ (match-end 1)
+ '("attach" "draft" "flagged" "list" "new" "passed" "replied"
+ "seen" "trashed" "unread" "encrypted" "signed" "personal")))
((looking-back "maildir:\\([a-zA-Z0-9/.]*\\)" nil)
(list (match-beginning 1)
(match-end 1)
(mu4e-get-maildirs)))
((looking-back "prio:\\(\\w*\\)" nil)
(list (match-beginning 1)
- (match-end 1)
- (list "high" "normal" "low")))
+ (match-end 1)
+ (list "high" "normal" "low")))
((looking-back "mime:\\([a-zA-Z0-9/-]*\\)" nil)
(list (match-beginning 1)
- (match-end 1)
+ (match-end 1)
(mailcap-mime-types)))
((looking-back "\\(from\\|to\\|cc\\|bcc\\|contact\\|recip\\):\\([a-zA-Z0-9/.@]*\\)" nil)
(list (match-beginning 2)
diff --git a/mu4e/mu4e-server.el b/mu4e/mu4e-server.el
index aeb544f..e1955d8 100644
--- a/mu4e/mu4e-server.el
+++ b/mu4e/mu4e-server.el
@@ -155,7 +155,7 @@ sexp received from the server process.")
<`mu4e--server-cookie-pre'><length-in-hex><`mu4e--server-cookie-post'>.")
(defconst mu4e--server-cookie-matcher-rx
(concat mu4e--server-cookie-pre "\\([[:xdigit:]]+\\)"
- mu4e--server-cookie-post)
+ mu4e--server-cookie-post)
"Regular expression matching the length cookie.
Match 1 will be the length (in hex).")
@@ -334,12 +334,12 @@ As per issue #2198."
(seq-each
(lambda(proc)
(when (and (process-live-p proc)
- (string-prefix-p mu4e--server-name (process-name proc)))
+ (string-prefix-p mu4e--server-name (process-name proc)))
(mu4e-message "killing stale mu4e server")
(ignore-errors
- (signal-process proc 'SIGINT) ;; nicely
- (sit-for 1.0)
- (signal-process proc 'SIGKILL)))) ;; forcefully
+ (signal-process proc 'SIGINT) ;; nicely
+ (sit-for 1.0)
+ (signal-process proc 'SIGKILL)))) ;; forcefully
(process-list)))
(defun mu4e--server-start ()
@@ -351,27 +351,27 @@ As per issue #2198."
"Cannot find mu, please set `mu4e-mu-binary' to the mu executable path"))
;; sanity-check 2
(let ((version (let ((s (shell-command-to-string
- (concat mu4e-mu-binary " --version"))))
+ (concat mu4e-mu-binary " --version"))))
(and (string-match "version \\([.0-9]+\\)" s)
(match-string 1 s)))))
(unless (string= version mu4e-mu-version)
(mu4e-error
(concat
"Found mu version %s, but mu4e needs version %s"
- "; please set `mu4e-mu-binary' "
+ "; please set `mu4e-mu-binary' "
"accordingly") version mu4e-mu-version)))
;; kill old/stale servers, if any.
(mu4e--kill-stale)
(let* ((process-connection-type nil) ;; use a pipe
- (args
- ;; [--debug] server [--muhome=..]
- (seq-filter (lambda (arg) arg) ;; filter out nil
- `(,(when mu4e-mu-debug "--debug")
- "server"
- ,(when mu4e-mu-home (format "--muhome=%s" mu4e-mu-home))))))
+ (args
+ ;; [--debug] server [--muhome=..]
+ (seq-filter (lambda (arg) arg) ;; filter out nil
+ `(,(when mu4e-mu-debug "--debug")
+ "server"
+ ,(when mu4e-mu-home (format "--muhome=%s" mu4e-mu-home))))))
(setq mu4e--server-buf "")
(mu4e-log 'misc "* invoking '%s' with parameters %s" mu4e-mu-binary
- (mapconcat (lambda (arg) (format "'%s'" arg)) args " "))
+ (mapconcat (lambda (arg) (format "'%s'" arg)) args " "))
(setq mu4e--server-process (apply 'start-process
mu4e--server-name mu4e--server-name
mu4e-mu-binary args))
@@ -470,7 +470,7 @@ get at most MAX contacts."
:maxnum ,(or maxnum nil))))
(defun mu4e--server-find (query threads sortfield sortdir maxnum skip-dups
- include-related)
+ include-related)
"Run QUERY with THREADS SORTFIELD SORTDIR MAXNUM SKIP-DUPS INCLUDE-RELATED.
If THREADS is non-nil, show results in threaded fashion,
@@ -509,7 +509,7 @@ added or removed), since merely editing a message does not update
the directory time stamp."
(mu4e--server-call-mu
`(index :cleanup ,(and cleanup t)
- :lazy-check ,(and lazy-check t))))
+ :lazy-check ,(and lazy-check t))))
(defun mu4e--server-mkdir (path)
"Create a new maildir-directory at filesystem PATH."