[Github-comments] Re: [geany/geany] changing cursor blinking rate (Issue #3410)

2023-02-20 Thread elextr via Github-comments
As the link @b4n gave says, setting the period to 0 stops blinking. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3410#issuecomment-1437590260 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany] changing cursor blinking rate (Issue #3410)

2023-02-20 Thread joomlafun via Github-comments
Or just stopping the cursor from blinking at all? 20 févr. 2023 22:36:13 Colomban Wendling ***@***.***>: > I don't think it's possible to change this currently, and it would then > default to Scintilla's 500ms period. See > SCI_SETCARETPERIOD[https://scintilla.org/ScintillaDoc.html#SCI_SETCARET

[Github-comments] Re: [geany/geany] changing cursor blinking rate (Issue #3410)

2023-02-20 Thread Colomban Wendling via Github-comments
I don't think it's possible to change this currently, and it would then default to Scintilla's 500ms period. See [SCI_SETCARETPERIOD](https://scintilla.org/ScintillaDoc.html#SCI_SETCARETPERIOD) for the API that one would use to implement this. -- Reply to this email directly or view it on Git

[Github-comments] [geany/geany] cursor blinking rate (Issue #3410)

2023-02-20 Thread joomlafun via Github-comments
Hi, I could not find documentation on how to change the blinking rate of the cursor, in what configuration file would that be or is this something to submit as a feature? -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3410 You are receiving this be

[Github-comments] Re: [geany/geany] statusbar column indicator causes text in statusbar to shift (Issue #3409)

2023-02-20 Thread elextr via Github-comments
> changing plaintext to individual widgets, and this way we could easily also > make it interactive (to change mode, file type, got to line, etc.). > But well, somebody has to do it, as you'd say :slightly_smiling_face: Put it on the "during the GTK4 port" list ;-P -- Reply to this email direct

[Github-comments] Re: [geany/geany] Crash after update to Scintilla 5.1.5 (Issue #3095)

2023-02-20 Thread elextr via Github-comments
My understanding is that the Geany API has been made safe (I'm not sure if sometimes it might result in an additional byte as well as the nul, but that is safe). Not sure about G-P. I like the idea of making a big message about updating plugins, and we can do an audit of G-P fairly simply, so

[Github-comments] Re: [geany/geany] statusbar column indicator causes text in statusbar to shift (Issue #3409)

2023-02-20 Thread Colomban Wendling via Github-comments
> How will that work? If we measure the widest digit then when the thinnest > digit is present it will be off again ;-) Hum, indeed… another solution that has been on my mind for ages and I've seen implemented in other apps "lately" would be changing plaintext to individual widgets, and this wa

[Github-comments] Re: [geany/geany] Crash after update to Scintilla 5.1.5 (Issue #3095)

2023-02-20 Thread Colomban Wendling via Github-comments
Somebody who cares update them, or they don't work Or you find a way to lookup whether the plugin's SO is *not* calling `scintilla_send_message()`, in which case it's (probably?) safe. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3095#issuecomment-

[Github-comments] Re: [geany/geany] Crash after update to Scintilla 5.1.5 (Issue #3095)

2023-02-20 Thread Thomas Martitz via Github-comments
What about plugins that work fine (because they don't use affected APIs) but won't be updated in months (or ever) because the authors have run away? -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3095#issuecomment-1436807483 You are receiving this bec

[Github-comments] Re: [geany/geany] Crash after update to Scintilla 5.1.5 (Issue #3095)

2023-02-20 Thread Colomban Wendling via Github-comments
Hum, has this been resolved? I admittedly didn't read everything, but we definitely at the very least need to bump ABI (even if indeed it's not a perfect solution). IMO, @elextr's idea of rejecting older APIs altogether is not a bad one. It's a bit annoying on plugin authors, but I totally agr

[Github-comments] Re: [geany/geany] tagmanager: Use more common i18n macros (PR #3408)

2023-02-20 Thread Colomban Wendling via Github-comments
Merged #3408 into master. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/3408#event-8559987894 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany] statusbar column indicator causes text in statusbar to shift (Issue #3409)

2023-02-20 Thread elextr via Github-comments
> Actually if we implement it manually we could measure the width of the > largest digit, compare that to the width of the space character, and use > Maths to know how many of the latter we need for padding. How will that work? If we measure the widest digit then when the thinnest digit is pre