Skip to content

Commit

Permalink
* helm-buffers.el: Add a face for directory `helm-buffer-directory' (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
thierryvolpiatto committed Mar 3, 2014
1 parent 6bfb463 commit e79dc16
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion helm-buffers.el
Expand Up @@ -84,6 +84,11 @@ When disabled (nil) use the longest buffer-name length found."
"Face used for process status in buffer." "Face used for process status in buffer."
:group 'helm-buffers) :group 'helm-buffers)


(defface helm-buffer-directory
'((t (:foreground "DarkRed" :background "LightGray")))
"Face used for directories in `helm-buffers-list'."
:group 'helm-files)



;;; Buffers keymap ;;; Buffers keymap
;; ;;
Expand Down Expand Up @@ -252,7 +257,7 @@ See `ido-make-buffer-list' for more infos."
(rassoc buf dired-buffers) (rassoc buf dired-buffers)
(helm-buffer--show-details (helm-buffer--show-details
name name-prefix dir size mode dir name name-prefix dir size mode dir
'helm-ff-directory 'helm-buffer-process nil details)) 'helm-buffer-directory 'helm-buffer-process nil details))
;; A buffer file modified somewhere outside of emacs.=>red ;; A buffer file modified somewhere outside of emacs.=>red
((and file-name (file-exists-p file-name) ((and file-name (file-exists-p file-name)
(not (verify-visited-file-modtime buf))) (not (verify-visited-file-modtime buf)))
Expand Down

0 comments on commit e79dc16

Please sign in to comment.