* word wrap preferences in org-mode buffers
@ 2010-07-16 19:37 Erik Iverson
2010-07-16 20:18 ` Eric S Fraga
2010-07-16 20:55 ` Sebastian Rose
0 siblings, 2 replies; 7+ messages in thread
From: Erik Iverson @ 2010-07-16 19:37 UTC (permalink / raw)
To: emacs-orgmode
Hello,
As I use org-mode more and more for actually writing things, I'm
wondering what your favorite Emacs word/line-wrapping mode is.
Basically, I see two main ways of doing this, auto-fill-mode and
visual-line-mode. Any others that you all use? If you use
auto-fill-mode or visual-line-mode, are there any obvious drawbacks,
particularly regarding org-tables and source code blocks.
I'm sure I'll run into the main issues eventually, but thought I'd ask
up front.
Thanks,
Erik
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: word wrap preferences in org-mode buffers
2010-07-16 19:37 word wrap preferences in org-mode buffers Erik Iverson
@ 2010-07-16 20:18 ` Eric S Fraga
2010-07-19 8:43 ` Noorul Islam K M
2010-07-16 20:55 ` Sebastian Rose
1 sibling, 1 reply; 7+ messages in thread
From: Eric S Fraga @ 2010-07-16 20:18 UTC (permalink / raw)
To: Erik Iverson; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1234 bytes --]
On Fri, 16 Jul 2010 14:37:54 -0500, Erik Iverson <eriki@ccbr.umn.edu> wrote:
>
> Hello,
>
> As I use org-mode more and more for actually writing things, I'm
> wondering what your favorite Emacs word/line-wrapping mode is.
>
> Basically, I see two main ways of doing this, auto-fill-mode and
> visual-line-mode. Any others that you all use? If you use
> auto-fill-mode or visual-line-mode, are there any obvious drawbacks,
> particularly regarding org-tables and source code blocks.
>
> I'm sure I'll run into the main issues eventually, but thought I'd ask
> up front.
>
> Thanks,
> Erik
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
I use auto-fill-mode most of the time. However, if I'm mixing code
and text, I tend to turn it off. In that case, it's an easy matter of
hitting M-q (fill-paragraph) every now and again to re-format the
current paragraph. I often do this without even realising... (just
did it now, in fact :-).
Visual line mode is okay but, as a very long time emacs user, I find
it conflicts with my believes as to what lines are etc.
[-- Attachment #2: Type: text/plain, Size: 75 bytes --]
--
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29 570D C891 93D8 FFFC F67D
[-- Attachment #3: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: word wrap preferences in org-mode buffers
2010-07-16 20:18 ` Eric S Fraga
@ 2010-07-19 8:43 ` Noorul Islam K M
0 siblings, 0 replies; 7+ messages in thread
From: Noorul Islam K M @ 2010-07-19 8:43 UTC (permalink / raw)
To: Eric S Fraga; +Cc: emacs-orgmode
Eric S Fraga <ucecesf@ucl.ac.uk> writes:
> On Fri, 16 Jul 2010 14:37:54 -0500, Erik Iverson <eriki@ccbr.umn.edu> wrote:
>
>>
>> Hello,
>>
>> As I use org-mode more and more for actually writing things, I'm
>> wondering what your favorite Emacs word/line-wrapping mode is.
>>
>> Basically, I see two main ways of doing this, auto-fill-mode and
>> visual-line-mode. Any others that you all use? If you use
>> auto-fill-mode or visual-line-mode, are there any obvious drawbacks,
>> particularly regarding org-tables and source code blocks.
>>
>> I'm sure I'll run into the main issues eventually, but thought I'd ask
>> up front.
>>
>> Thanks,
>> Erik
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
> I use auto-fill-mode most of the time. However, if I'm mixing code
> and text, I tend to turn it off. In that case, it's an easy matter of
> hitting M-q (fill-paragraph) every now and again to re-format the
> current paragraph. I often do this without even realising... (just
> did it now, in fact :-).
I always faced this problem and I didn't know that there is this key
binding. Thank you!
Thanks and Regards
Noorul
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: word wrap preferences in org-mode buffers
2010-07-16 19:37 word wrap preferences in org-mode buffers Erik Iverson
2010-07-16 20:18 ` Eric S Fraga
@ 2010-07-16 20:55 ` Sebastian Rose
2010-07-17 11:01 ` Eric S Fraga
1 sibling, 1 reply; 7+ messages in thread
From: Sebastian Rose @ 2010-07-16 20:55 UTC (permalink / raw)
To: Erik Iverson; +Cc: emacs-orgmode
Erik Iverson <eriki@ccbr.umn.edu> writes:
> Hello,
>
> As I use org-mode more and more for actually writing things, I'm wondering what
> your favorite Emacs word/line-wrapping mode is.
>
> Basically, I see two main ways of doing this, auto-fill-mode and
> visual-line-mode. Any others that you all use? If you use auto-fill-mode or
> visual-line-mode, are there any obvious drawbacks, particularly regarding
> org-tables and source code blocks.
I have this here bound to `SUPER-t':
(defun sr-toggle-truncate-lines ()
"Lange Zeilen abschneiden, oder eben nicht."
(interactive)
(setq truncate-lines (if truncate-lines nil t)))
I use it to toggle truncate-lines in the rare cases I have to edit a
longish piece of text, that must be on one line.
auto-fill-mode is wonderfull. I just type ahead and it breaks the lines
as desired. I use in all buffers.
visual-line-mode and longlines-mode are not an option.
(I confess, that I even refuse to read such unformatted e-mails every
now and then. Those mails are unreadable on a large screen with
longlines-mode turned off =P )
Sebastian
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: word wrap preferences in org-mode buffers
2010-07-16 20:55 ` Sebastian Rose
@ 2010-07-17 11:01 ` Eric S Fraga
2010-07-17 11:57 ` Sebastian Rose
0 siblings, 1 reply; 7+ messages in thread
From: Eric S Fraga @ 2010-07-17 11:01 UTC (permalink / raw)
To: Sebastian Rose; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]
On Fri, 16 Jul 2010 22:55:40 +0200, Sebastian Rose <sebastian_rose@gmx.de> wrote:
>
> Erik Iverson <eriki@ccbr.umn.edu> writes:
> > Hello,
> >
> > As I use org-mode more and more for actually writing things, I'm wondering what
> > your favorite Emacs word/line-wrapping mode is.
> >
> > Basically, I see two main ways of doing this, auto-fill-mode and
> > visual-line-mode. Any others that you all use? If you use auto-fill-mode or
> > visual-line-mode, are there any obvious drawbacks, particularly regarding
> > org-tables and source code blocks.
>
>
> I have this here bound to `SUPER-t':
>
> (defun sr-toggle-truncate-lines ()
> "Lange Zeilen abschneiden, oder eben nicht."
> (interactive)
> (setq truncate-lines (if truncate-lines nil t)))
>
> I use it to toggle truncate-lines in the rare cases I have to edit a
> longish piece of text, that must be on one line.
Sebastian,
Emacs, at least since v22 or maybe longer, has a built-in function
"toggle-truncate-lines".
[-- Attachment #2: Type: text/plain, Size: 75 bytes --]
--
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29 570D C891 93D8 FFFC F67D
[-- Attachment #3: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-07-19 8:44 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-16 19:37 word wrap preferences in org-mode buffers Erik Iverson
2010-07-16 20:18 ` Eric S Fraga
2010-07-19 8:43 ` Noorul Islam K M
2010-07-16 20:55 ` Sebastian Rose
2010-07-17 11:01 ` Eric S Fraga
2010-07-17 11:57 ` Sebastian Rose
2010-07-17 12:23 ` Eric S Fraga
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).