Re: Issue with find next in 2.4 Alpha 2

2021-02-12 Thread Jürgen Spitzmüller
Am Freitag, dem 12.02.2021 um 14:54 -0500 schrieb Paul A. Rubin: > With 2.4 Alpha 2, typing Alt+N toggles between highlighting the > search term and selecting the Find Next button in the dialog. (These > happened simultaneously in 2.3.6.1.) Importantly, the first > occurrence of the se

Issue with find next in 2.4 Alpha 2

2021-02-12 Thread Paul A. Rubin
Hi all, I just installed 2.4 Alpha 2 on Linux Mint 20.1 using Liv's repo. Since there's been some discussion of "find next" (or "find again") on the user list, I thought I'd give it a try. It seems to be slightly broken in 2.4 (okay in 2.3.6.1). Test p

Re: #7894: Cannot use keyboard to "find next"

2011-11-18 Thread Xu Wang
think my tone was rude or >> mocking. I do not understand why you are angry with me. >> >> I have supported the LyX project for quite some time, including donating >> $1000. I don't expect that to entitle me to special treatment or anything, >> but I wo

Re: #7894: Cannot use keyboard to "find next"

2011-11-18 Thread Richard Heck
gt; > I have supported the LyX project for quite some time, including > donating $1000. I don't expect that to entitle me to special > treatment or anything, but I would like to think it indicates that > I care about this app and want it to be the best app it possib

Re: #7894: Cannot use keyboard to "find next"

2011-11-18 Thread Xu Wang
some time, including donating > $1000. I don't expect that to entitle me to special treatment or anything, > but I would like to think it indicates that I care about this app and want > it to be the best app it possibl

Re: #7894: Cannot use keyboard to "find next"

2011-11-18 Thread Maynard Handley
11, at 12:19 PM, LyX Ticket Tracker wrote: > #7894: Cannot use keyboard to "find next" > -+-- > Reporter: name99 | Owner: lasgouttes > Type: defect | Status: new

Re: Find Next

2008-03-25 Thread rgheck
Pavel Sanda wrote: Could someone do me a big favor implement this? I'm forever hitting F3 and expecting it to advance me to the next search item. will commit if no objections. You'll certainly get no objection from me. rh

Re: Find Next

2008-03-25 Thread Pavel Sanda
p +++ b/src/BufferView.cpp @@ -263,6 +263,9 @@ struct BufferView::Private /** Not owned, so don't delete. */ frontend::GuiBufferViewDelegate * gui_; + + /// Cache for Find Next + FuncRequest search_request_cache_; }; @@ -1182,12 +1185,17 @@ bool BufferView::disp

Re: Find Next

2008-03-25 Thread Andre Poenitz
On Tue, Mar 25, 2008 at 05:10:48PM -0400, rgheck wrote: > > Could someone do me a big favor implement this? I'm forever hitting F3 and > expecting it to advance me to the next search item. I guess we could make LFUN_WORD_FIND just use the selection if it is there and the search string is empty in

Re: Find Next

2008-03-25 Thread cmiramon
rgheck wrote: > > Could someone do me a big favor implement this? I'm forever hitting F3 > and expecting it to advance me to the next search item. > > rh +1... Grrr

Find Next

2008-03-25 Thread rgheck
Could someone do me a big favor implement this? I'm forever hitting F3 and expecting it to advance me to the next search item. rh

Re: replace and find next

2004-02-20 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Spitzmueller <[EMAIL PROTECTED]> writes: Juergen> The 1.3.x series does only contain bugfixes and it's not Juergen> clear if there will be a LyX 1.3.5 Just on this last point: my intent now is to have a 1.3.5, if only to add support in lyx2lyx to read the 1.4.0 format (

Re: replace and find next

2004-02-20 Thread Juergen Spitzmueller
Hi Francesco, Francesco Lamonica wrote: > +++ lyx-1.3.4-mod/src/frontends/qt2/ui/QSearchDialogBase.ui Fri Feb 20 > 17:46:00 2004 @@ -1,311 +1,254 @@ > - > + I don't know if this feature will be considered useful, but technically, you have to take care about the following issues: - You need

replace and find next

2004-02-20 Thread Francesco Lamonica
- -QPushButton - -name + + + findPB - -enabled + false - -text +

[PATCH] changes: Find next change support

2003-02-07 Thread John Levon
ndex: src/insets/insettext.h === RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insettext.h,v retrieving revision 1.134 diff -u -r1.134 insettext.h --- src/insets/insettext.h 25 Sep 2002 14:26:12 - 1.134 +++ src/insets/insettext.h 7 Feb 2003 11:32:34 - @@ -228,6 +228,20 @@ void selectSelectedWord(BufferView *); /// void toggleSelection(BufferView *, bool kill_selection); + /// find next change + bool nextChange(BufferView *, lyx::pos_type & length); + /// bool searchForward(BufferView *, string const &, bool = true, bool = false);