Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2012-10-29 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fraff@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2012-10-23 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fraff@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2012-10-23 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fraff@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-11-30 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-11-30 Thread Thomas Dickey
On Tue, 30 Nov 2010, Francois Lallart wrote: I think pager code does addch('\n') when line wraping (pager.c:1233 then pager.c:1490). I modified wrap_cols (pager.c:1100) to avoid that addch('\n') but it still doesn't allow to select a multi lines url. That's expected behavior. It would only ch

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-11-30 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Thomas Dickey
On Sat, 25 Sep 2010, Derek Martin wrote: On Sat, Sep 25, 2010 at 06:09:16PM -0400, Thomas Dickey wrote: it's a termcap application as well. "strings" shows me this: Fair enough... I see no (other) curses calls on my system either. no problem (I knew it was termcap, offhand - haven't looked

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Derek Martin
On Sat, Sep 25, 2010 at 06:09:16PM -0400, Thomas Dickey wrote: > it's a termcap application as well. "strings" shows me this: Fair enough... I see no (other) curses calls on my system either. -- Derek D. Martinhttp://www.pizzashack.org/ GPG Key ID: 0xDFBEAD02 -=-=-=-=- This message is pos

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Thomas Dickey
On Sat, 25 Sep 2010, Derek Martin wrote: On Sat, Sep 25, 2010 at 08:15:44AM -0400, Thomas Dickey wrote: However, when I view the source code in vim or with less, double clicking *does* select the wrapped portion. vim doesn't use curses (it's a termcap application). (n)curses happens to provid

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Jean-Pierre Radley
Derek Martin typed (on Sat, Sep 25, 2010 at 05:00:41PM -0500): | On Sat, Sep 25, 2010 at 08:15:44AM -0400, Thomas Dickey wrote: | > >However, when I view the source code in vim or with less, double | > >clicking *does* select the wrapped portion. | > | > vim doesn't use curses (it's a termcap appl

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Derek Martin
On Sat, Sep 25, 2010 at 08:15:44AM -0400, Thomas Dickey wrote: > >However, when I view the source code in vim or with less, double > >clicking *does* select the wrapped portion. > > vim doesn't use curses (it's a termcap application). > (n)curses happens to provide a termcap interface. But less d

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Thomas Dickey
On Fri, 24 Sep 2010, Michael Elkins wrote: On Fri, Sep 24, 2010 at 08:57:27PM -0400, Thomas Dickey wrote: no - using addch has no effect. curses collects all of that information and writes out the changes to the screen when "refresh" is called (which is also a side-effect of calling getch).

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Moritz Barsnick
Hi Michael, Thomas, On Fri, Sep 24, 2010 at 18:37:36 -0700, Michael Elkins wrote: > However, when I view the source code in vim or with less, double clicking > *does* select the wrapped portion. I seem to recall that selecting wrapped lines in less never worked...until it started working at some

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-25 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-24 Thread Michael Elkins
On Fri, Sep 24, 2010 at 08:57:27PM -0400, Thomas Dickey wrote: no - using addch has no effect. curses collects all of that information and writes out the changes to the screen when "refresh" is called (which is also a side-effect of calling getch). Attached is a test case that prints a long s

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-24 Thread Thomas Dickey
On Fri, 24 Sep 2010, Michael Elkins wrote: On Mon, Sep 20, 2010 at 06:07:59PM -0400, Thomas Dickey wrote: It's lost by cursor-movement optimization (in ncurses, curses or slang). xterm sets the line-wrap flag when text is written automatically wrapping on the right margin. Optimization may n

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-24 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-24 Thread Michael Elkins
On Mon, Sep 20, 2010 at 06:07:59PM -0400, Thomas Dickey wrote: It's lost by cursor-movement optimization (in ncurses, curses or slang). xterm sets the line-wrap flag when text is written automatically wrapping on the right margin. Optimization may notice that it's faster to jump to the next l

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-24 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-24 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-20 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone:

Re: [Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-20 Thread Thomas Dickey
On Mon, 20 Sep 2010, Mutt wrote: #3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: majo

[Mutt] #3453: mutt-1.5.18: wrap line as they can be selected with a double click

2010-09-20 Thread Mutt
#3453: mutt-1.5.18: wrap line as they can be selected with a double click ---+ Reporter: fr...@…| Owner: mutt-dev Type: defect | Status: new Priority: major | Milestone: