Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-22 Thread Richard Kimberly Heck
On 7/22/23 18:01, Jean-Marc Lasgouttes wrote: Le 18/07/2023 à 20:50, Jean-Marc Lasgouttes a écrit : Le 17/07/2023 à 23:19, Jean-Marc Lasgouttes a écrit : It worked well until one tries to use mathed %-] Updated patch below is better in this respect. Err, I posted the same patch twice! Here

Re: make rpmdist failing

2023-07-22 Thread José Matos
On Sat, 2023-07-22 at 23:59 +0200, Jean-Marc Lasgouttes wrote: > I suspect rpmdist dislikes the hyphens after RC1. Are you sure that > this is typical of rpm naming? You could try underscores instead. > > In the past our release nme were more like lyx-2.4.0rc1 Jean-Marc is right regarding the

Re: How should we handle neg*space insets in find?

2023-07-22 Thread Scott Kostyshak
On Sat, Jul 22, 2023 at 05:30:16PM +0200, Kornel Benko wrote: > Am Sat, 22 Jul 2023 06:54:37 -0400 > schrieb Scott Kostyshak : > > > On Sat, Jul 22, 2023 at 11:57:58AM +0200, Kornel Benko wrote: > > > > > > * Should we discard them > > > * Handle like white space > > > > > > If using in findadv

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-22 Thread Jean-Marc Lasgouttes
Le 18/07/2023 à 20:50, Jean-Marc Lasgouttes a écrit : Le 17/07/2023 à 23:19, Jean-Marc Lasgouttes a écrit : It worked well until one tries to use mathed %-] Updated patch below is better in this respect. Err, I posted the same patch twice! Here is the updated one. The patch is now attached

Re: make rpmdist failing

2023-07-22 Thread Jean-Marc Lasgouttes
Le 22/07/2023 à 21:05, Richard Kimberly Heck a écrit : I've finally decided to use the rpmdist target rather than installing directly, but it is failing here:     $(LN_S) $(srcdir)/lib/images/lyx.png . ; \ The problem is that LN_S does not seem to be defined, so it is trying to execute the

Re: \lBrack [was Re: Double brackets]

2023-07-22 Thread Udicoudco
On Sat, Jul 22, 2023 at 10:53 PM Richard Kimberly Heck wrote: > > On 7/22/23 14:45, Udicoudco wrote: > > On Sat, Jul 22, 2023 at 9:40 PM Richard Kimberly Heck > > wrote: > >> On 7/22/23 14:28, Herbert Voss wrote: > >>> Am 22.07.23 um 17:24 schrieb Dan: > >>> if you want to use the old names.

Re: make rpmdist failing

2023-07-22 Thread Kornel Benko
Am Sat, 22 Jul 2023 15:05:11 -0400 schrieb Richard Kimberly Heck : > I've finally decided to use the rpmdist target rather than installing > directly, but it is failing here: > >     $(LN_S) $(srcdir)/lib/images/lyx.png . ; \ > > The problem is that LN_S does not seem to be defined, so it is

Re: \lBrack [was Re: Double brackets]

2023-07-22 Thread Richard Kimberly Heck
On 7/22/23 14:45, Udicoudco wrote: On Sat, Jul 22, 2023 at 9:40 PM Richard Kimberly Heck wrote: On 7/22/23 14:28, Herbert Voss wrote: Am 22.07.23 um 17:24 schrieb Dan: I am trying to write a Lie bracket [[a, b ]]. The commands \llbracket and \rrbracket work just fine in the LyX math

make rpmdist failing

2023-07-22 Thread Richard Kimberly Heck
I've finally decided to use the rpmdist target rather than installing directly, but it is failing here:     $(LN_S) $(srcdir)/lib/images/lyx.png . ; \ The problem is that LN_S does not seem to be defined, so it is trying to execute the image. Temporarily replacing that with cp leads to:

Re: \lBrack [was Re: Double brackets]

2023-07-22 Thread Udicoudco
On Sat, Jul 22, 2023 at 9:40 PM Richard Kimberly Heck wrote: > > On 7/22/23 14:28, Herbert Voss wrote: > > Am 22.07.23 um 17:24 schrieb Dan: > >> I am trying to write a Lie bracket [[a, b ]]. The commands > >> \llbracket and \rrbracket work just fine in the LyX math formula, but > >> doesn't

\lBrack [was Re: Double brackets]

2023-07-22 Thread Richard Kimberly Heck
On 7/22/23 14:28, Herbert Voss wrote: Am 22.07.23 um 17:24 schrieb Dan: I am trying to write a Lie bracket [[a, b ]].  The commands \llbracket and \rrbracket work just fine in the LyX math formula, but doesn't render in LuaTex.  I could conceivably use a negative space and join the symbols |

Re: Paragraph settings not applied to last selected paragraph

2023-07-22 Thread Pavel Sanda
On Sat, Jul 22, 2023 at 01:42:37PM +0200, Jean-Marc Lasgouttes wrote: > Le 21/07/2023 ?? 16:27, Pavel Sanda a écrit : > >Clearly the idea was to iterate over all paragraphs in the range of > >[cur.selectionBegin();cur.selectionEnd()]. However ++c.pit() increases only > >paragraph number

Re: How should we handle neg*space insets in find?

2023-07-22 Thread Kornel Benko
Am Sat, 22 Jul 2023 06:54:37 -0400 schrieb Scott Kostyshak : > On Sat, Jul 22, 2023 at 11:57:58AM +0200, Kornel Benko wrote: > > > > * Should we discard them > > * Handle like white space > > > > If using in findadv with selected 'Adhere to search string formatting of' > > they are treated as

Re: Paragraph settings not applied to last selected paragraph

2023-07-22 Thread Jean-Marc Lasgouttes
Le 21/07/2023 à 16:27, Pavel Sanda a écrit : Clearly the idea was to iterate over all paragraphs in the range of [cur.selectionBegin();cur.selectionEnd()]. However ++c.pit() increases only paragraph number (c.slices_[0].pit_) and let the relative cursor position within paragraph

Re: How should we handle neg*space insets in find?

2023-07-22 Thread Scott Kostyshak
On Sat, Jul 22, 2023 at 11:57:58AM +0200, Kornel Benko wrote: > > * Should we discard them > * Handle like white space > > If using in findadv with selected 'Adhere to search string formatting of' > they are treated as ordinary non-word chars. > Without this option, the are discarded. > > I am

How should we handle neg*space insets in find?

2023-07-22 Thread Kornel Benko
* Should we discard them * Handle like white space If using in findadv with selected 'Adhere to search string formatting of' they are treated as ordinary non-word chars. Without this option, the are discarded. I am unsure, how to proceed. Using them as white spaces disables the specific search