如何防止IntelliJ IDEA启动时打开最后一个项目?

IntelliJ IDEA在启动时默认打开最后一个项目。

如何启动IntelliJ不打开最后一个项目?

80213 次浏览

IntelliJ 14, 15, 16:

Settings -> Appearance & Behaviour -> System Settings -> Reopen last project on startup

以前:

Settings -> General -> Startup/shutdown -> Reopen last project on startup.

只要勾选复选框:

Settings -> General -> Reopen last project on startup

这是想法10。

如果出于任何原因,你需要在不使用UI的情况下更改此设置(例如,如果IDEA在打开项目时挂起),你可以在eg中找到设置

/.IntelliJIdea10/config/options/ide.general.xml

文件的位置记录在http://devnet.jetbrains.net/docs/DOC-181

您需要更改(或添加)的特定设置是

<application>
<component name="GeneralSettings">
<option name="reopenLastProject" value="false" />
</component>
</application>

Mac

在IntelliJ的最新版本中,此文件在Mac上的位置为

~/Library/Preferences/IntelliJIdea2018.2/options/ide.general.xml

设置存储库

如果你启用了设置存储库,那么可以在这里找到它:

~ / .IntelliJIdea $ {idea_version} / config / settingsRepository /仓库/ ide.general.xml

在Mac上,该文件位于~/Library/Preferences/IntelliJIdea12/options/ide.general.xml

然后将reopenLastProject选项设置为false

对于Mac 10.9 (Mavericks)上的Intellij 13,它也位于~/Library/Preferences/IntelliJIdea13/options/ide.general.xml。(我没有足够的声誉来为尼古拉斯的答案投票)。

我在VI中使用下面的路径打开这个文件:

~ /图书馆/偏好/ IdeaIC13 /选项/ ide.general.xml

并更改了这个值:

<option name="reopenLastProject" value="true" />

<option name="reopenLastProject" value="false" />

在IntelliJ 14中是:

设置->外观&行为—>系统设置—>启动/关机—> .操作步骤 在启动时重新打开上一个项目

按下CTL+ALT+S可以弹出设置窗口。

对于最新版本的Android Studio IDE

按照下面的步骤来做

文件>设置>系统设置>单击“重新打开上一个项目”复选框>应用或确定

最快的方法就是

ctrl + shift + (windows)

cmd + shift + (mac)

然后输入

在启动时重新打开上一个项目

enter image description here

< p > IntelliJ 2016。X现在将这些信息保存在自己的文件中。 在我的MacBook Pro w/OSX:

~/Library/Preferences/IntelliJIdea2016.2/options/recentProjects.xml

如果IntelliJ在启动时挂起,强制退出应用程序,然后将该文件重命名为“recentProjects.xml.bak”。

重新启动后,您将看到用于创建或打开项目的选项屏幕。

注意:实际路径可能会根据您安装的IntelliJ版本而有所不同。

IntelliJIdea2016.1/ IntelliJIdea2016.2/ IntelliJIdea2016.3/

Intellij IdeaAndroid工作室:

从菜单转到:

__abc0 > __abc1 > __abc2。

禁用该选项:

Reopen last project on startup

introducir la descripción de la imagen aquí

要通过IntelliJ IDEA 2019.1 Community Edition中的配置文件来管理这个设置,请前往~/Library/Preferences/IdeaIC2019.1/options/,使用Patrick Wilkes的答案和ide.general.xml编辑器。

WINDOWS上,路径为:

C:\Users\[USERNAME]\.IntelliJIdea[VERSION]\config\options\ide.general.xml

然后将reopenLastProject设置为false,即:

< p > <代码> & lt; application> & lt;组件名称=“GeneralSettings”比; >选项名称="reopenLastProject" value="false" /> & lt; / component> 代码& lt; / application> < / > < / p >

PS:如果它不存在,您可能必须创建该选项。

对于新的IntelliJ版本[如2020.3.2…]

enter image description here

如果你只是想启动一次IntelliJ,而不打开任何以前的项目(例如由于IntelliJ与特定项目一起崩溃),你可以从命令行使用dontReopenProjects选项。

例子:

C:\dev\ide\IntelliJ IDEA Community Edition 2020.2\bin\idea64.exe dontReopenProjects

来源(归功于mikebridge,因为他在这个答案的注释中指出了这一点):https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#arguments

注意:还有一些其他有用的命令行选项,例如noSplashdisableNonBundledPlugins