2014-02-17 IntelliJ13で開いているファイルをEmacsで開く、またはその逆のメモ Intellij MacOSX IntelliJで開いているファイルをEmacsで開く Preferences -> External Tools -> "+"アイコンで新規作成 Name (Emacs), Group (Editer), Description を適当に入力 Tools Setting Program: -> /Applications/MacPorts/Emacs.app (Emacsのパス) Parameters: -> $FilePath$ メニューバーの tools -> Editer -> Emacs を選択すると、Emacsで開ける 参考サイト Is it possible to "extend" IntelliJ such that I can open the current file in VIM - Stack Overflow Emacs で開いているファイルを Intellij で開く (defun show-in-intellij-for-mac () (interactive) (shell-command (concat "open -a IntelliJ\\ IDEA\\ 13 " buffer-file-name)) ) M-x show-in-intellij-for-mac