help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gutter region on both sides of screen


From: Teemu Likonen
Subject: Re: gutter region on both sides of screen
Date: Fri, 04 Sep 2009 20:17:02 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

On 2009-09-04 13:04 (-0400), J. David Boyd wrote:

> It's actually not the color of the fringe that bothers me, it is the
> little 'wrap' characters that I don't like. I'm looking at a file
> where the lines are about 500 char long, and the little clockwise and
> counterclockwise symbols that tell me the line is wrapping bother me.
> They are visual nose that I don't need. I _know_ the line is wrapping.
>
> I can't find where to turn those off either, or what the glyphs are
> called.

This is probably the simplest way:

    (push '(continuation nil nil) fringe-indicator-alist)

This version modifies the alist in-place:

    (setcdr (assq 'continuation fringe-indicator-alist)
            '(nil nil))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]