Vincent Zhang 2019-03-01 18:20:25 +07:00
parent c6e95114ae
commit 07782ea9f6

View file

@ -43,6 +43,7 @@
(defvar anzu--current-position)
(defvar anzu--overflow-p)
(defvar anzu--state)
(defvar anzu--total-matched)
(defvar anzu-cons-mode-line-p)
(defvar aw-keys)
(defvar battery-echo-area-format)
@ -941,8 +942,8 @@ lines are selected, or the NxM dimensions of a block selection."
(advice-add #'evil-force-normal-state :after #'anzu--reset-status)
;; Fix matches segment mirroring across all buffers
(mapc #'make-variable-buffer-local
'(anzu--current-position
anzu--state anzu--cached-count
'(anzu--total-matched
anzu--current-position anzu--state anzu--cached-count
anzu--cached-positions anzu--last-command
anzu--last-isearch-string anzu--overflow-p)))
@ -954,9 +955,9 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with
(not (bound-and-true-p iedit-mode)))
(propertize
(let ((here anzu--current-position)
(total anzu--cached-count))
(total anzu--total-matched))
(cond ((eq anzu--state 'replace-query)
(format " %d replace " total))
(format " %d replace " anzu--cached-count))
((eq anzu--state 'replace)
(format " %d/%d " here total))
(anzu--overflow-p