This file contains hidden or 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
;================================================================ | |
;mac風キーバインド(Cmd+Q) など | |
; https://gist.github.com/daimatz/1385713 | |
;================================================================ | |
#InstallKeybdHook | |
#UseHook | |
;================================================================ | |
;関数 |
This file contains hidden or 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
;; Mac の Dictionary.app を、 Emacs の popwin.el から使う | |
;; dict.py is from http://sakito.jp/mac/dictionary.html | |
(defun dictionary () | |
"dictionary.app" | |
(interactive) | |
(let ((word (if (and transient-mark-mode mark-active) | |
(buffer-substring-no-properties (region-beginning) (region-end)) | |
(read-string "Dictionary: "))) | |
(cur-buffer (current-buffer)) | |
(tmpbuf " * dict-process *")) |
NewerOlder