Glam Prestige Journal

Bright entertainment trends with youth appeal.

Is there a way to disable the help mode in Nano by default? I know I can disable it by pressing the Meta + X key, but I'd like it to be disabled when I start Nano.

Thanks in advance!

1 Answer

Start with nano -x. This, and much more about nano, can be found in man nano. If you get tired of typing -x all the time, consider setting up an alias for nano -x like this:

alias nano="nano -x"

Another way to permanently disable the help line is to put a line:

set nohelp

in the file ~/.nanorc. If you don't have this file, create one. See man nanorc for more.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy