PyCharm Professional 中的配置数量有上限。有什么办法提高他们的金额?
Amount of Configurations in PyCharm Professional is capped. Any way to raise their amount?
我正在使用 PyCharm Pro,并且保存的配置数量有限。我每天使用大量脚本(很容易超过 30 个),而且我在配置中只看到一个上限数量。如果我添加另一个配置,我通常会弹出一个旧配置。
有什么方法可以增加 PyCharm 中保存的配置数量?似乎无法在配置中找到相应的选项。
我自己是 PyCharm 用户,但在我看来,依靠 IDE 来调用配置并不是管理它们的最佳方式,尤其是当您有这么多配置时。为什么不在你的项目根目录写一个脚本,需要的时候可以调用需要的配置?
我的建议是使用 baker
之类的库或其他 CLI 菜单库来构建它。您使用装饰器将函数标识为 baker commands
然后执行。
这样您就可以在不打开 PyCharm 的情况下调用您的脚本,而是从命令行调用。
您可能是指 “临时” 配置,因为 “永久” 配置没有数量限制。您可以通过图标的不透明度来区分它们。
Run/debug configurations - PyCharm 2021
Permanent configurations have opaque icons while the icons of temporary configurations are semi-transparent.
自 PyCharm 2021.2 起,最大默认数量 “临时配置” 再次可配置
Run/debug configurations - PyCharm 2021.2
Temporary — created every time you run or debug functions or tests.
The maximum number of temporary configurations is 5. The older ones are automatically deleted when new ones are added. If necessary, you can increase this limit in Settings/Preferences | Advanced Settings | IDE | Temporary Run/Debug configurations limit.
在 PyCharm 2021.1 中,最大 “临时配置” 的默认最大数量限制为 5。
Run/debug configurations - PyCharm 2021.1
The maximum number of temporary configurations is 5. The older ones are automatically deleted when new ones are added.
此默认值可在 PyCharm 2020.1 through 2020.3
中配置
Run/debug configurations - PyCharm 2020
By default, five temporary run/debug configurations are allowed per project, so when you create the sixth configuration, the one created first is removed, and so on. To change this limit, use the Temporary configurations limit field in the Templates page of the Run/debug configurations dialog.
但是,通过使用 “永久” 配置,没有任何限制。这是显示超过 30 个永久 运行 配置的屏幕截图。
我正在使用 PyCharm Pro,并且保存的配置数量有限。我每天使用大量脚本(很容易超过 30 个),而且我在配置中只看到一个上限数量。如果我添加另一个配置,我通常会弹出一个旧配置。
有什么方法可以增加 PyCharm 中保存的配置数量?似乎无法在配置中找到相应的选项。
我自己是 PyCharm 用户,但在我看来,依靠 IDE 来调用配置并不是管理它们的最佳方式,尤其是当您有这么多配置时。为什么不在你的项目根目录写一个脚本,需要的时候可以调用需要的配置?
我的建议是使用 baker
之类的库或其他 CLI 菜单库来构建它。您使用装饰器将函数标识为 baker commands
然后执行。
这样您就可以在不打开 PyCharm 的情况下调用您的脚本,而是从命令行调用。
您可能是指 “临时” 配置,因为 “永久” 配置没有数量限制。您可以通过图标的不透明度来区分它们。
Run/debug configurations - PyCharm 2021
Permanent configurations have opaque icons while the icons of temporary configurations are semi-transparent.
自 PyCharm 2021.2 起,最大默认数量 “临时配置” 再次可配置
Run/debug configurations - PyCharm 2021.2
Temporary — created every time you run or debug functions or tests.
The maximum number of temporary configurations is 5. The older ones are automatically deleted when new ones are added. If necessary, you can increase this limit in Settings/Preferences | Advanced Settings | IDE | Temporary Run/Debug configurations limit.
在 PyCharm 2021.1 中,最大 “临时配置” 的默认最大数量限制为 5。
Run/debug configurations - PyCharm 2021.1
The maximum number of temporary configurations is 5. The older ones are automatically deleted when new ones are added.
此默认值可在 PyCharm 2020.1 through 2020.3
中配置Run/debug configurations - PyCharm 2020
By default, five temporary run/debug configurations are allowed per project, so when you create the sixth configuration, the one created first is removed, and so on. To change this limit, use the Temporary configurations limit field in the Templates page of the Run/debug configurations dialog.
但是,通过使用 “永久” 配置,没有任何限制。这是显示超过 30 个永久 运行 配置的屏幕截图。