IntelliJ IDEA启动时如何防止最后打开的项目


Answers:


374

IntelliJ 14、15、16

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

先前:

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

15
在14中,现在位于设置->外观和行为->系统设置中。或者,您可以使用搜索功能轻松找到它。
Java Devil

设置也被重命名为Intellij IDEA选项卡下的首选项。
Sarp Kaya 2015年

2
也可用于JetBrains的其他IDE,例如CLion。
gbmhunter

只需在搜索面板中搜索“系统设置”即可。
NoName

对于intelij和android studio都有用。谢谢!
安德鲁(Andrew)

154

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

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

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

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

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

苹果电脑

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

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

设置存储库

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

〜/ .IntelliJIdea $ {idea_version} /config/settingsRepository/repository/ide.general.xml


1
可在此处获取更新的文档:intellij-support.jetbrains.com/entries/23358108
jwfearn 2014年

5
OSX:sed -i.bak's /“ reopenLastProject” value =“ true” /“ reopenLastProject” value =“ false” /'〜/ Library / Preferences / IntelliJIdea13 / options / ide.general.xml
maosmurf

2
在Mac上,2017年及以后的路径应该是这样的:~/Library/Preferences/IntelliJIdea2017.2/options/ide.general.xml
calvinf

4
如果丢失,则添加行:<option name="reopenLastProject" value="false" />
Duncan Calvert,

4
在IntelliJ 17中,当我需要阻止启动时重新打开项目时,编辑<option name="openPaths">文件中的标签recentProjects.xml对我来说很有效。
natetitterton

15

最快的方法是

Ctrl + Shift + A(Windows)

cmd + shift + a(mac)

然后输入

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

在此处输入图片说明


14

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


12

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

然后将reopenLastProject选项设置为false


12

IntelliJ 2016.x现在将此信息保存在其自己的文件中。在带OSX的MacBook Pro上:

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

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

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

注意:实际路径可能会有所不同,具体取决于您安装的IntelliJ版本。

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


您也可以从该文件中删除对该项目的所有提及,从而给您带来问题,并使其余的最新设置保持不变。
jordanpg

1
最好删除<option name="openPaths">要阻止其在启动时打开的标签下的行
Dexter Legaspi

10

我使用以下路径在VI中打开了该文件:

〜/ Library / preferences / IdeaIC13 / options / ide.general.xml

并更改此值:

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

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


7

在IntelliJ 14中,它是:

设置->外观和行为->系统设置->启动/关闭->启动时重新打开上一个项目

您可以通过按CTL + ALT + S进入设置窗口。


6

Intellij IdeaAndroid Studio

从菜单转到:

File> Settings >Appearence & Behavior> System Settings

禁用该选项:

Reopen last project on startup

图像描述入门


1

在上WINDOWS,路径为:

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

然后设置reopenLastProjectfalse,即:

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


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


1
由于2020.1 WebStorm的设置位于此处:C:\ Users \%USERNAME%\ AppData \ Roaming \ JetBrains \ WebStorm [VERSION] \ options \ ide.general.xml
Tobias Weibel

0

对于最新版本的Android Studio IDE

只需按照以下步骤

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


0

要通过IntelliJ IDEA 2019.1 Community Edition中的配置文件管理此设置,请~/Library/Preferences/IdeaIC2019.1/options/转至将Patrick Wilkes的答案与ide.general.xml编辑一起使用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.