EmacsからVimiumを操作する
「EmacsからChromeを操作する」のつづきです
もうちょっとだけ操作性を向上させます
何ができるの?
Emacsからフォーカスを外すことなく、Chromeアプリ「Vimium」を起動・操作できます
(Vimium: The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.)
どうやるの?
AppleScriptの準備
Vimium起動用のAppleScript
Google Chrome上でF
キーを押す動きをシミュレート
ファイル名: chrome_vimium
#!/usr/bin/osascript
tell application "Google Chrome" to activate
tell application "System Events"
tell process "Google Chrome"
keystroke "f"
end tell
end tell
tell application "Emacs" to activate
Vimium操作用のAppleScript
Google Chrome上に表示されたキーを押す動きをシミュレート
ファイル名: chrome_vimium_input
#!/usr/bin/osascript
-- 引数: 押したいキー
on run argv
set myinput to (item 1 of argv)
tell application "Google Chrome" to activate
tell application "System Events"
tell process "Google Chrome"
keystroke myinput
end tell
end tell
tell application "Emacs" to activate
end run
各スクリプトは適当なPathに配置して実行権限を付与してください
init.elの準備
;; Vimium起動用の関数
;; スクリプトへのPathはお好みで
(defun my-vimium()
(interactive)
(call-process-shell-command
"~/shellscript/chrome_vimium/chrome_vimium&"
nil 0))
;; お好みで
(global-set-key (kbd "H-e") 'my-vimium)
;; Vimium操作用の関数
;; スクリプトへのPathはお好みで
(defun my-vimium-input(my-input)
(interactive "sString:")
(call-process-shell-command
(concat "~/shellscript/chrome_vimium/chrome_vimium_input " my-input)
nil 0))
;; お好みで
(global-set-key (kbd "H-w") 'my-vimium-input)
実行
- Emacs上で
M-x my-vimium
(上記の例だと "H-e") - Chromeにジャンプ用のキーが表示される
- Emacs上で
M-x my-vimium-input
(上記の例だと "H-w") - Emacs上でジャンプしたいキーを入力
以上です!!
Author And Source
この問題について(EmacsからVimiumを操作する), 我々は、より多くの情報をここで見つけました https://qiita.com/blue0513/items/0a863013b9100e6a8f49著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .