🐥
ターミナルからIntelliJを起動する
環境
- macOS 12.1
- zsh 5.8
- IntelliJ IDEA 2021.3
ターミナルからIntelliJを起動できるようにする
.zshrcなどに以下の設定を追加する。
idea() {
# 古いバージョンは IntelliJ IDEA.app を指定する
open -na "IntelliJ IDEA Ultimate.app" --args nosplash "$@"
}
詳細
以下のように使う
idea /path/to/project
おまけ
ghqとpecoを使って特定のGitリポジトリをIntelliJで開けるようにする。
.zshrcとかに以下の設定を追加する。
alias io='idea $(ghq root)/$(ghq list | peco)'
これで io
とコマンドを入力すれば、ghqで管理しているGitリポジトリをpecoで絞り込んでIntelliJを開くことができる。
Discussion