Nano: update the file after selecting it using the file browser

I have no problem opening + change + save the file if I write nano filenameon the terminal. But if I open nano and open File Browser, open a file and try to save it, there is no default file name !:

enter image description here

+6
source share
3 answers

I tried your problem and really found that nano cannot "remember" the file name. My suspicion is that when you open the editor by simply typing "nano" on the command line, it only reads the contents of this file and inserts it into the current buffer (without creating a new buffer to open this file).

:
1. nano, nano
2. alt + F, nano
3. , , nano ctrl + R, ctrl + T
4. . !

+6

, nano , , .

, , , . , , . , fancier , , .

alias nanod='nano $(head -c16 < /dev/urandom | xxd -pu)'

; , .

+1

Unfortunately, what you are asking for is not implemented or maybe this is a mistake. You are doing everything right, it’s just that nano doesn’t “remember” which file you just opened using the built-in browser function.

+1
source

All Articles