Emacs dired bindings

master
Pierre Neidhardt 2013-06-26 18:38:32 +02:00
parent 3b7e181464
commit ebcc544c5c
2 changed files with 4 additions and 8 deletions

View File

@ -23,8 +23,7 @@ Example: to assign some-function to C-i, use
;; Cache folder is everything we do not want to track.
(setq emacs-cache-folder "~/.cache/emacs/")
(if
(not (file-directory-p emacs-cache-folder))
(if (not (file-directory-p emacs-cache-folder))
(make-directory emacs-cache-folder t))
;; Local plugin folder for quick install. All files in this folder will be

View File

@ -500,9 +500,6 @@ has errors and/or warnings."
(add-hook
'dired-mode-hook
(lambda ()
(local-set-key (kbd "C-c a") 'dired-toggle-hidden)))
(add-hook
'dired-mode-hook
(lambda ()
(local-set-key (kbd "C-c h") 'dired-toggle-humansize)))
(local-set-key (kbd "C-c a") 'dired-toggle-hidden)
(local-set-key (kbd "C-c h") 'dired-toggle-humansize)
(local-set-key (kbd "b") 'dired-up-directory)))