From b4ddd2a803a6f60598148efc99ef76a36fe07913 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Fri, 20 Mar 2015 21:39:24 -0400 Subject: [PATCH] Minor change to previous commit --- spacemacs/packages.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spacemacs/packages.el b/spacemacs/packages.el index aacc26a1b..4ff340941 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -1352,13 +1352,14 @@ which require an initialization must be listed explicitly in the list.") :config (progn (helm-mode +1) - (defun spacemacs/set-dotted-directory () + (defun spacemacs//set-dotted-directory () + "Set the face of diretories for `.' and `..'" (set-face-attribute 'helm-ff-dotted-directory nil :foreground nil :background nil :inherit 'helm-ff-directory)) - (add-hook 'helm-find-files-before-init-hook 'spacemacs/set-dotted-directory) + (add-hook 'helm-find-files-before-init-hook 'spacemacs//set-dotted-directory) ;; alter helm-bookmark key bindings to be simpler (defun simpler-helm-bookmark-keybindings () (define-key helm-bookmark-map (kbd "C-d") 'helm-bookmark-run-delete)