Last active
February 15, 2016 03:22
-
-
Save rmuslimov/72bf5a1561c7b60eb535 to your computer and use it in GitHub Desktop.
Small extension for dired under Macosx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq | |
scripts-dired-find-owner | |
"tell application \"Finder\" | |
set appname to (default application of (info for POSIX file \"%s\")) | |
do shell script \"echo \" & appname | |
end tell") | |
(setq | |
scripts-dired-open-from-finder | |
"tell application \"Finder\" to open POSIX file \"%s\"") | |
(setq | |
scripts-dired-reveal-in-finder | |
"tell application \"Finder\" | |
reveal POSIX file \"%s\" | |
activate | |
end tell") | |
(defun my-dired-external-open () | |
"SIMPLE HOOK TO OPEN FILE IN FINDER DEFAULT APPLICATION." | |
(interactive) | |
(let* ((filename (dired-get-file-for-visit)) | |
(whocmd (format scripts-dired-find-owner filename)) | |
(owner-app (do-applescript whocmd))) | |
(cond | |
((or (s-contains? "Emacs" owner-app) (file-directory-p filename)) | |
(dired-view-file)) | |
(t | |
(do-applescript (format scripts-dired-open-from-finder filename)))))) | |
(defun my-dired-reveal-in-finder () | |
(interactive) | |
(let* ((filename (dired-get-file-for-visit)) | |
(cmd (format scripts-dired-reveal-in-finder filename))) | |
(do-applescript cmd))) | |
(defun init-dired-hooks () | |
(local-set-key (kbd "M-RET") 'my-dired-external-open) | |
(local-set-key (kbd "<s-return>") 'my-dired-reveal-in-finder) | |
(dired-omit-mode t)) | |
(require 'dired-x) | |
(add-hook | |
'dired-mode-hook 'init-dired-hooks) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment