http://www.shigemk2.com/entry/from_emacs_to_inteliJ を参考に、EmacsからIntelliJへ、IntelliJからEmacsへのジャンプが出来るようにしたのだが、EmacsからIntelliJに飛ぶ時に現在の行位置に飛んでくれなかったので改良した。 以下のようなコマンドをelispで定義しておくことで、行位置を保存したままIntelliJに飛べる ;;; 現在のファイルをIntelliJで開く (defun open-by-intellij () (interactive) (shell-command (format "/Applications/IntelliJ\\ IDEA\\ CE.app/Contents/MacOS/idea --line %d %s >/dev/null 2>&1" (line-number-at-pos)