4

The nano editor by default displays only the filename being edited, but not its full path. This can be a problem, if I need to edit old vs new versions of files by the same name.

Does anyone know of a way to toggle or change this behaviour to display a full path? Or is there no way short of figuring out where this happens in the source code and recompiling?

1 Answers1

1

man nano say's nothing about files' paths. /etc/nanorc nano configuration file also gives no such option. But if you want nano to display filename's full path, use full path during file's opening:

nano /home/user/test/test.sh will show it the next way:

enter image description here

Gryu
  • 837