[ivy] Rename counsel-more-chars to ivy-more-chars

counsel-more-chars was renamed to ivy-more-chars a year ago:
Move counsel-more-chars-alist and counsel-more-chars to ivy.el.
4461ef302a

with an alias to counsel-more-chars.

The alias was removed 2 days ago:
ivy.el: Clean up obsolete aliases
1a9002bf4b
This commit is contained in:
duianto 2019-10-14 10:30:27 +02:00
parent 441c5653ca
commit 98e7bf38ad
2 changed files with 5 additions and 3 deletions

View File

@ -1834,6 +1834,8 @@ Other:
- Fixed typos in spacemacs/search-dir* bindings (thanks to yuhan0)
- Added =ivy-ret-visits-directory= variable (thanks to bb2020)
- Fixed definitions of extra actions R and D for recentf (thanks to madand)
- Renamed =counsel-more-chars= to =ivy-more-chars= to match upstream
(thanks to duianto)
**** Imenu-list
- Changed ~SPC b i~ to ~SPC b t~ for =imenu= tree view
(thansk to Sylvain Benner)

View File

@ -71,9 +71,9 @@
(cdr (assoc-string tool spacemacs--counsel-commands))))
(lambda (string &optional _pred &rest _unused)
"Grep in the current directory for STRING."
;; `counsel-more-chars' returns non-nil when more chars are needed,
;; minimal chars count is configurable via `counsel-more-chars-alist'
(or (counsel-more-chars)
;; `ivy-more-chars' returns non-nil when more chars are needed,
;; minimal chars count is configurable via `ivy-more-chars-alist'
(or (ivy-more-chars)
(let* ((default-directory (ivy-state-directory ivy-last))
(args (if (string-match-p " -- " string)
(let ((split (split-string string " -- ")))