• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

debian editors

skyking

Lifer
I use pico most of the time, but I miss a feature from my bsd days;
the line output. which editor will show me the line I am working on? let's say I have an error on line 103 of a certain config file. Using freebsd's edit for example, it showed me the line number of the file where I was at.
Edit: OK, I am dumb. I found the current position command.
I do miss the constant printout of current position though, and would like and editor that does that for me. and maybe makes me a cup of coffee..........
 
Vi (and vim) will keep numbers in the left column if you ":set number". They will also continually display line and column numbers at the bottom (actually, I can't even figure out how to turn that off 😛)
 
On my Ubuntu box pico is linked to nano!

:/usr/bin$ ls -al /etc/alternatives/ | grep pico
lrwxrwxrwx 1 root root 9 2008-01-14 15:49 pico -> /bin/nano
 
Back
Top