From 07782ea9f66bf5c73b38f694ee7a07caaf6dded2 Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Fri, 1 Mar 2019 18:20:25 +0700 Subject: [PATCH] Fix anzu issue. See https://github.com/seagle0128/doom-modeline/pull/128#issuecomment-468621209. --- doom-modeline-segments.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doom-modeline-segments.el b/doom-modeline-segments.el index 9f4ab5b..de71865 100644 --- a/doom-modeline-segments.el +++ b/doom-modeline-segments.el @@ -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