I want to show the top main menu toolbar that recently disappeared in PyCharm.
I was trying to find the setting in config\options\ui.lnf.xml
in the IntelliJIdea and PyCharm directories, but there is no such file.
I want to show the top main menu toolbar that recently disappeared in PyCharm.
I was trying to find the setting in config\options\ui.lnf.xml
in the IntelliJIdea and PyCharm directories, but there is no such file.
This should work:
Navigate
> Search Everywhere
).main menu
(or just ma me
).View | Appearance: Main Menu
.Here are the steps to unhide (Or show back) the main menu/Toolbar in Goland/PyCharm or other IntelliJ Editors:
Is your OS Linux? Try adding linux.native.menu=false
into Help | Edit Custom Properties and restart IDE.
There is a file name ui.lnf.xml
, the location of this file may different from OS to OS.
In Linux - the file location is - Home directory after that .config/JetBrains/Idea_<<version>>/options
.
For example I am using Ubutu where I can find the location like -
$ sudo find /home/ -name "ui.lnf.xml"
/home/xxxx/.config/JetBrains/IdeaIC2022.2/options/ui.lnf.xml
Under the ui.lnf.xml
there will be an entry if main menu is off:
<application>
<component name="UISettings">
<option name="SHOW_MAIN_MENU" value="false" />
</component>
</application>
Need to change the value from false
to true
.
© 2022 - 2025 — McMap. All rights reserved.