Fix #337 - don't promt for sudo passwd for non-existing directories
This commit is contained in:
parent
860b08467a
commit
457017a5a6
1 changed files with 2 additions and 0 deletions
|
@ -294,6 +294,8 @@ buffer is not visiting a file."
|
|||
(defadvice ido-find-file (after find-file-sudo activate)
|
||||
"Find file as root if necessary."
|
||||
(unless (or (equal major-mode 'dired-mode)
|
||||
(and (buffer-file-name)
|
||||
(not (file-exists-p (file-name-directory (buffer-file-name)))))
|
||||
(and (buffer-file-name)
|
||||
(file-writable-p buffer-file-name)))
|
||||
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
|
||||
|
|
Loading…
Reference in a new issue