IDEA 在 Mac 下如何用命令行打开:

49 天前
 Rust2015

如 vscode 那样,code . IDEA 能否像它那样,idea .

我在网上看了很多资料,还是没有成功

2239 次点击
所在节点    Java
9 条回复
Immortal
49 天前
工具->创建命令行启动器
xinge666
48 天前
建议使用 Toolbox ,在工具里面可以生成 Shell 脚本
xarthur
48 天前
/Applications/IntelliJ\ IDEA.app/Contents/MacOS/idea
ysc3839
48 天前
open IDEA.app ?
vkillwucy
48 天前
生成 shell 后对应目录,idea .就好啦
dozer47528
48 天前
上面说的 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
yiqiao
48 天前
phpstorm 是可以这样的,idea 应该也可以。
` alias phpstorm='open -a PhpStorm' `
8355
48 天前
@xinge666 快清缓存,我控制不住了。
z1645444
47 天前
官方的说法: 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 为例

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1076955

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX