but there must be in this specific order

Glib keyfile docs say "groups in key files may contain the same key multiple times; the last entry wins." so any position after the first will work. But the first doesn't work any more does it? You could have done the same with

As you said there is no way of assigning multiple keyboard shortcuts to a single action. As this is the only likely user for that its unlikely that it will happen.

But so long as ctrl= is not assigned in Geany it will fall through to Scintilla and, as a special case, it may be possible to assign it there with code like (untested):

sci_assign_cmdkey(sci,  '=' | (SCMOD_CTRL << 16), SCI_ZOOMIN);

in a suitable place to initialise all Scintilla objects, maybe in this function.

"Somebody" could try it and make a PR if it works.


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/issues/3894/2155760288@github.com>