parent
7038c2e800
commit
7b11f67c76
1 changed files with 5 additions and 1 deletions
|
@ -118,6 +118,10 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
||||||
'ivy-switch-buffer))
|
'ivy-switch-buffer))
|
||||||
:test #'equal))
|
:test #'equal))
|
||||||
|
|
||||||
|
(defun ivy-rich-bookmark-filename-or-empty (candidate)
|
||||||
|
(let ((filename (ivy-rich-bookmark-filename candidate)))
|
||||||
|
(if (not filename) "" filename)))
|
||||||
|
|
||||||
;; Enahnce the appearance of a couple counsel commands
|
;; Enahnce the appearance of a couple counsel commands
|
||||||
(plist-put! ivy-rich-display-transformers-list
|
(plist-put! ivy-rich-display-transformers-list
|
||||||
'counsel-describe-variable
|
'counsel-describe-variable
|
||||||
|
@ -135,7 +139,7 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
||||||
'counsel-bookmark
|
'counsel-bookmark
|
||||||
'(:columns
|
'(:columns
|
||||||
((ivy-rich-candidate (:width 0.5))
|
((ivy-rich-candidate (:width 0.5))
|
||||||
(ivy-rich-bookmark-filename (:width 60)))))
|
(ivy-rich-bookmark-filename-or-empty (:width 60)))))
|
||||||
|
|
||||||
;; Remove built-in coloring of buffer list; we do our own
|
;; Remove built-in coloring of buffer list; we do our own
|
||||||
(setq ivy-switch-buffer-faces-alist nil)
|
(setq ivy-switch-buffer-faces-alist nil)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue