How to display line numbers in Nano text editor

46,977

Solution 1

Ctrl+C will show the current line/column once, and Meta+C (usually Alt+C) will toggle a continuous line/column display on and off.

Ctrl+_ (that's underscore, so on most keyboard layouts that's Ctrl+Shift+-) will prompt you to jump to a specific line number.

Solution 2

Non permanent

nano -c /path/to/file

Permanent

edit ~/.nanorc and add the following

set const

For more details - as mentioned by Nick - check this perfect answer.

Share:
46,977

Related videos on Youtube

dufte
Author by

dufte

Updated on September 18, 2022

Comments

  • dufte
    dufte over 1 year

    When using Nano text editor, how can I display line numbers so I can see the lines that I am getting error messages about. I have a lengthy program and am getting an error message for line 95 and 125 for example.

  • CamelTM
    CamelTM about 2 years
    set constantshow