Difference between revisions of "Editor: nano"

From Dreamwidth Notes
Jump to: navigation, search
(Linebreaks in Nano)
 
(adding category)
Line 10: Line 10:
  
 
Now, whenever you run 'nano', it'll run 'nano -w' instead.
 
Now, whenever you run 'nano', it'll run 'nano -w' instead.
 +
 +
[[Category: Editors]]

Revision as of 21:41, 7 April 2009

Expand: This needs expansion.

By default nano quietly adds linebreaks to the file that you're working on, not just word-wraps it for display in the editor. This can cause trouble with generating patches, and because it's indistinguishable from word-wrapping in the editor, it can take you a while to diagnose it. To prevent this from happening, when you call nano, do it with the -w flag, which will turn off auto-linebreaking:

nano -w filename

You may want to make this a default by aliasing the command:

echo 'alias nano="nano -w"' >> ~/.bashrc

Now, whenever you run 'nano', it'll run 'nano -w' instead.