Don't try edit dired buffer as root
This commit is contained in:
parent
b09eaf8e0e
commit
f8de1b7060
1 changed files with 3 additions and 2 deletions
|
@ -264,8 +264,9 @@ buffer is not visiting a file."
|
||||||
|
|
||||||
(defadvice ido-find-file (after find-file-sudo activate)
|
(defadvice ido-find-file (after find-file-sudo activate)
|
||||||
"Find file as root if necessary."
|
"Find file as root if necessary."
|
||||||
(unless (and buffer-file-name
|
(unless (or (equal major-mode 'dired-mode)
|
||||||
(file-writable-p buffer-file-name))
|
(and (buffer-file-name)
|
||||||
|
(file-writable-p buffer-file-name)))
|
||||||
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
|
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
|
||||||
|
|
||||||
(defun prelude-switch-or-start (function buffer)
|
(defun prelude-switch-or-start (function buffer)
|
||||||
|
|
Loading…
Reference in a new issue