Removes redundant buffer creation in Dired
This commit is contained in:
parent
325985da97
commit
6f251694d6
1 changed files with 8 additions and 1 deletions
|
@ -221,9 +221,15 @@
|
||||||
|
|
||||||
;; Dired Settings
|
;; Dired Settings
|
||||||
(use-package dired
|
(use-package dired
|
||||||
|
:init
|
||||||
|
(load "~/.emacs.d/wc-dired-functions.lisp")
|
||||||
:bind (:map dired-mode-map
|
:bind (:map dired-mode-map
|
||||||
|
("e" . wdired-change-to-wdired-mode)
|
||||||
("c" . find-file)
|
("c" . find-file)
|
||||||
("K" . dired-up-directory)))
|
("RET" . dired-find-alternate-file)
|
||||||
|
("^" . wc/dired-up-directory))
|
||||||
|
:config
|
||||||
|
(setq wdired-allow-to-change-permissions t))
|
||||||
|
|
||||||
|
|
||||||
;; Evil Settings
|
;; Evil Settings
|
||||||
|
@ -549,3 +555,4 @@
|
||||||
(set-frame-parameter (selected-frame) 'alpha '(100 . 100))
|
(set-frame-parameter (selected-frame) 'alpha '(100 . 100))
|
||||||
(add-to-list 'default-frame-alist '(alpha . (100 . 100)))
|
(add-to-list 'default-frame-alist '(alpha . (100 . 100)))
|
||||||
(put 'narrow-to-region 'disabled nil)
|
(put 'narrow-to-region 'disabled nil)
|
||||||
|
(put 'dired-find-alternate-file 'disabled nil)
|
||||||
|
|
Loading…
Add table
Reference in a new issue