On Sat, Nov 17, 2012 at 2:30 PM, jessejazza <
jesseja...@gmail.com> wrote:
> On Saturday, November 17, 2012 4:22:05 AM UTC, John Gabriele wrote:
>>
>> What should work out well for you is to just set your RightMargin (to,
>> say, 72), enable WordWrap, and then save those default preferences.
>> Then you can type away with wild abandon, just like before, and ne
>> will automatically give you nicely sized lines. This way, both you and
>> your tools should be pretty happy. :)
>>
>
> Thanks both of you for your replies. It would seem that all editors apart
> from emacs and vim are intended for programmers/coders with hard wrap being
> their requirement.
>
> John thanks for explaining the wordwrap but it doesn't do what i was hoping.
> It just seems strange to me that the graphical editors will save with
> 'softwrap' but none of the console ones.
Hi James,
Since GUI editors like leafpad live in resizeable windows (with
line-wrapping), I can see how it might be convenient to use long lines
and then just resize the window to display them at whatever width
seems comfortable.
With terminal-based editors, I think it's probably more common set
your editor to have some sensible right-margin setting, and then
either use auto line-breaking while typing, or else use a reformat
command every so often on the paragraphs you're working on. This way,
regardless of how overly-wide your terminal window may be, the lines
are all still at a nice readable width.
You might give this way of working a try. Programmer's text editors
tend to be line-based --- their commands work with lines (go to
beginning of line, end of line, select line, delete line, etc.). You
might find that --- once you become familiar with the editor's
keyboard shortcuts and commands --- it's easier to work with (what I
think of as) regular lines and newlines instead of long lines.
---John