Fix: not displaying count for the first match.

This commit is contained in:
Vincent Zhang 2018-12-31 18:38:37 +08:00
parent 1b0cbe842f
commit 9feaa79b4d

View file

@ -1203,10 +1203,7 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with
(defsubst doom-modeline--symbol-overlay ()
"Show the number of matches for symbol overlay."
(when (and (bound-and-true-p symbol-overlay-keywords-alist)
(not (bound-and-true-p symbol-overlay-temp-symbol))
(not (bound-and-true-p iedit-mode)))
(when-let* ((keyword (symbol-overlay-assoc
(let* ((keyword (symbol-overlay-assoc
(ignore-errors (symbol-overlay-get-symbol))))
(symbol (car keyword))
(before (symbol-overlay-get-list symbol 'car))
@ -1217,7 +1214,7 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with
(format (concat " %d/%d " (and (cadr keyword) "in scope "))
(+ count 1)
(+ count (length after)))
'face (if (doom-modeline--active) 'doom-modeline-panel))))))
'face (if (doom-modeline--active) 'doom-modeline-panel)))))
(defsubst doom-modeline--multiple-cursors ()
"Show the number of multiple cursors."