Skip to content

Instantly share code, notes, and snippets.

@sw1nn
Created September 21, 2017 21:33
Show Gist options
  • Save sw1nn/765afb8a947bb95fddce181696aafb7e to your computer and use it in GitHub Desktop.
Save sw1nn/765afb8a947bb95fddce181696aafb7e to your computer and use it in GitHub Desktop.
(defadvice ido-find-file (after find-file-sudo activate)
"Find file as root if necessary."
(unless (and buffer-file-name
(file-writable-p buffer-file-name))
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment