牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

Emacs から Google Chrome を Applescript でリロードするメモ(MacOS only)

(MacOSX 10.8, Emacs 24.2, Google Chrome 24.0)

How To

AppleScript

~/.emacs.d/reload-chrome.scpt

tell application "Google Chrome"
	tell active tab of first window
		execute javascript "window.location.reload()"
	end tell
end tell
Emacs

init.el

  (defun reload-chrome ()
    (interactive)
    (shell-command "osascript ~/.emacs.d/reload-chrome.scpt")
    )
  (global-set-key (kbd "s-r") 'reload-chrome)
  )