PyCharm run configurations not on main window

一曲冷凌霜 提交于 2020-05-29 09:58:30

问题


PyCharm Community Edition as shown below on Ubuntu 18.04 box.

Notice the run configurations dropdown is not on my main window

Searched docs/settings/views and can't figure out how to get it attached to the main view. Anyone else have this issue?


回答1:


Thanks @LazyOne, your answer brought my attention to the navigation bar; however, when I enabled it as you suggested it was still hidden. This seems to be a known issue in IntelliJ with a known solution. I had to edit the PyCharm config file ~/.PyCharmCE2019.3/config/options/ui.lnf.xml, changing the following line then restarting the IDE:

<application>
  <component name="UISettings">
    ...
    <option name="SHOW_MAIN_MENU" value="true" />
    ...
  </component>
</application>

Somehow it got set to false...

LazyOne's original answer below

Main Menu | View | Appearance.

Either enable Navigation Bar to see file path navigation + small toolbar on the right ... or Toolbar to see a full toolbar (overkill as for me as you would barely use that many icons there).

A drop down with Run/Debug Configurations is part of both toolbars by default (full and small).

If you need to customize them -- Settings/Preferences | Appearance & Behavior | Menus and Toolbars:

P.S. Screenshots are from PhpStorm, but it should be the same for PyCharm (as they both based on IDEA platform).




回答2:


@LazyOne has the correct answer if you installed PyCharm from source. If you installed it as a snap package, there is no ~/.PyCharm* dir.

Instead, you'll need to edit ~/.config/JetBrains/PyCharmCE2020.1/options/ui.lnf.xml

(where the CE2020.1 part is the version you have installed)



来源:https://stackoverflow.com/questions/60619618/pycharm-run-configurations-not-on-main-window

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!