How to make Help Menu not take up whole screen view? #669
|
Just found about One very small "annoyance" I'm having is that whenever I e.g. try to create a file/directory Help Menu expands and takes the whole screen. Same when I use CleanShot.2023-10-02.at.12.44.15.mp4Is there a way to make Here's my |
Answered by
sayanarijit
Oct 2, 2023
Replies: 1 comment 1 reply
for name, mode in pairs(xplr.config.modes.builtin) do
if mode.layout == "HelpMenu" then
mode.layout = nil
end
end
-- same for xplr.config.modes.customSomething like this should work... typed on mobile, so there could be typos. |
1 reply
Answer selected by
frixaco
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Something like this should work... typed on mobile, so there could be typos.