Fix definitions of extra actions R and D for recentf

`ivy-recentf` was renamed into `counsel-recentf` upstream.
This commit is contained in:
madand 2019-09-09 22:30:56 +03:00 committed by duianto
parent 7a2d6d9860
commit 630781581a
2 changed files with 3 additions and 2 deletions

View File

@ -1770,6 +1770,7 @@ Other:
- Display results count properly in prompt (thanks to yuhan0)
- 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)
**** Imenu-list
- Changed ~SPC b i~ to ~SPC b t~ for =imenu= tree view
(thansk to Sylvain Benner)

View File

@ -329,11 +329,11 @@
'(("R" (lambda (arg)
(interactive)
(recentf-cleanup)
(ivy-recentf)) "refresh list")
(counsel-recentf)) "refresh list")
("D" (lambda (arg)
(interactive)
(setq recentf-list (delete arg recentf-list))
(ivy-recentf)) "delete from list"))))
(counsel-recentf)) "delete from list"))))
;; merge recentf and bookmarks into buffer switching. If we set this
(setq ivy-use-virtual-buffers t))