牌語備忘録 -pygo

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

牌語備忘録 -pygo

IntelliJ13で開いているファイルをEmacsで開く、またはその逆のメモ

IntelliJで開いているファイルをEmacsで開く

  • Preferences -> External Tools -> "+"アイコンで新規作成
    • Name (Emacs), Group (Editer), Description を適当に入力
    • Tools Setting

メニューバーの tools -> Editer -> Emacs を選択すると、Emacsで開ける

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