如 vscode 那样,code . IDEA 能否像它那样,idea .
我在网上看了很多资料,还是没有成功
1
Immortal 36 天前
工具->创建命令行启动器
|
2
xinge666 36 天前
|
3
xarthur 36 天前
/Applications/IntelliJ\ IDEA.app/Contents/MacOS/idea
|
5
vkillwucy 36 天前 via Android
生成 shell 后对应目录,idea .就好啦
|
6
dozer47528 36 天前
上面说的 2 个方法都行,但我还是习惯自己设置 alias
if [ -d '/Applications/Visual Studio Code.app' ]; then alias vs="open -a '/Applications/Visual Studio Code.app'" fi if [ -d '/Applications/IntelliJ IDEA.app' ]; then alias idea="open -a '/Applications/IntelliJ IDEA.app'" fi if [ -d '/Applications/WebStorm.app' ]; then alias webstorm="open -a '/Applications/WebStorm.app'" fi if [ -d '/Applications/GoLand.app' ]; then alias goland="open -a '/Applications/GoLand.app'" fi |
7
yiqiao 36 天前
phpstorm 是可以这样的,idea 应该也可以。
` alias phpstorm='open -a PhpStorm' ` |
9
z1645444 35 天前
官方的说法: https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#arguments
主要看 Launcher for a standalone instance 的部分,找到对应的系统 如果是 macOS ,直接往对应 shell 的 dotfile 里加入 export PATH="/Applications/GoLand.app/Contents/MacOS:$PATH" 就好了,这里是以 GoLand 为例 |