Re: Preference to disable input completion?

2020-11-19 Thread Pavel Sanda
On Thu, Nov 19, 2020 at 10:27:50PM -0500, Scott Kostyshak wrote: > I like input completion in math but not for text. Sometimes when I press > in text, it triggers an input completion because of the following > default binding: > > \bind "Tab""command-alternatives > completion-accept;ce

Preference to disable input completion?

2020-11-19 Thread Scott Kostyshak
I like input completion in math but not for text. Sometimes when I press in text, it triggers an input completion because of the following default binding: \bind "Tab""command-alternatives completion-accept;cell-forward;tab-insert;outline-in;depth-increment" Does anyone else find (non

Re: New Patches

2020-11-19 Thread José Abílio Matos
On Thursday, November 19, 2020 2:23:14 PM WET Jean-Marc Lasgouttes wrote: > I have to say that lambdas are not my cup of tea, but the original code > is not great either. With variable capture lambdas can sometimes be subtle, but in this case that is not an issue and the code is a lot more readab

Re: [LyX/master] Fix compilation of included libiconv with autoconf

2020-11-19 Thread Kornel Benko
Am Thu, 19 Nov 2020 13:14:35 +0100 (CET) schrieb Jean-Marc Lasgouttes : > commit b5d1f2f3002c22db64fda4eb40220a1dc0b43903 > Author: Jean-Marc Lasgouttes > Date: Thu Nov 19 13:40:26 2020 +0100 > > Fix compilation of included libiconv with autoconf > --- > 3rdparty/libiconv/Makefile.am |

Re: New Patches

2020-11-19 Thread Jean-Marc Lasgouttes
Le 19/11/2020 à 14:54, Pavel Sanda a écrit : On Thu, Nov 19, 2020 at 02:09:08PM +0200, Yuriy Skalko wrote: New patches for LyX. Patch 1 looks good to go, I am not sure about the sencond, i.e. to what extent we want to use lambdas. IIRC some people complained about readability (OTOH constructs

Re: New Patches

2020-11-19 Thread Pavel Sanda
On Thu, Nov 19, 2020 at 02:09:08PM +0200, Yuriy Skalko wrote: > New patches for LyX. Patch 1 looks good to go, I am not sure about the sencond, i.e. to what extent we want to use lambdas. IIRC some people complained about readability (OTOH constructs like firster are not that nice either). Anyway,

New Patches

2020-11-19 Thread Yuriy Skalko
New patches for LyX. Yuriy From c083a56f9ddb2e4d5d2cc4bb0586fbb83ae598e9 Mon Sep 17 00:00:00 2001 From: Yuriy Skalko Date: Thu, 19 Nov 2020 13:24:04 +0200 Subject: [PATCH 1/2] Simplify constructors --- src/Dimension.h| 28 +++- src/graphics/PreviewLoader

Unification of several types

2020-11-19 Thread Yuriy Skalko
Hello, Browsing the LyX code I've found that some types (idx_type, row_type etc) are defined in many places. I propose to leave only one definition for each type in "support/types.h" header. class Inset { ... typedef ptrdiff_t difference_type; /// short of anything el