this post was submitted on 20 Jul 2023
2 points (100.0% liked)

Firefox

1058 readers
61 users here now

The latest news and developments on Firefox and Mozilla, a global non-profit that strives to promote openness, innovation and opportunity on the web.

You can subscribe to this community from any Kbin or Lemmy instance:

Related

Rules

While we are not an official Mozilla community, we have adopted the Mozilla Community Participation Guidelines as far as it can be applied to a bin.

Rules

  1. Always be civil and respectful
    Don't be toxic, hostile, or a troll, especially towards Mozilla employees. This includes gratuitous use of profanity.

  2. Don't be a bigot
    No form of bigotry will be tolerated.

  3. Don't post security compromising suggestions
    If you do, include an obvious and clear warning.

  4. Don't post conspiracy theories
    Especially ones about nefarious intentions or funding. If you're concerned: Ask. Please don’t fuel conspiracy thinking here. Don’t try to spread FUD, especially against reliable privacy-enhancing software. Extraordinary claims require extraordinary evidence. Show credible sources.

  5. Don't accuse others of shilling
    Send honest concerns to the moderators and/or admins, and we will investigate.

  6. Do not remove your help posts after they receive replies
    Half the point of asking questions in a public sub is so that everyone can benefit from the answers—which is impossible if you go deleting everything behind yourself once you've gotten yours.

founded 1 year ago
MODERATORS
 

For those who don't know,
The Multi Key is a key you can set on linux, with which you can type an insane amount of unicode characters. It is commonly bound to scroll lock, I will represent it with ↓ here.

A few examples of shortcuts would be
↓TM → ™
↓|v → ↓ (the character I am using here)
↓+- → ±
↓co → ǒ

Now, most of those work just fine in Firefox, but weirdly there are some that don't. For example ↓PP produces ¶ just fine, but ↓RR doesn't type ℝ. for ↓RR the Multi Key input stops, like it does once no more valid sequences are left that match the current input. ↓CC also doesn't type ℂ, but it doesn't stop but continue on as if there was a different sequence starting with CC. I don't see anything special about the sequences that don't work compared to the majority that do.

After some trial an error, I think what is happening is that firefox does read my .XCompose, but the line include "%L", that is supposed to load the default Compose file located in /usr/share/X11/locale/en_US.UTF-8/Compose is ignored. It is not a language configuration error, as include "/usr/share/X11/locale/en_US.UTF-8/Compose" is ignored too. Entering some deliberate modifications or even removing existing sequences from the Compose file doesn't affect Firefox.
I even found some sequence ↓a_ which is supposed to yield ā but firefox has as ª (not to be confused with ᵃ the superscript a) instead.

Searching for the place Firefox' Compose is defined, I grepped for "ª" which is a pretty rare character, and hit libxul.so. I tried a bunch of other characters and found pretty much everything that has a compose sequence is found in that file.

So thus my question would be: Are Firefoxes default compose sequences statically compiled into libxul.so? And if so, why?

top 3 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

While I am not entirely sure of what you are talking about, it sounds like you are trying to define shortcuts or overrides in X11/Xorg input settings for your input device. My guess is, based on the age of the Firefox port on *nix, and the fact that X is basically dead upstream - is that even if this is a valid bug, you probably won't get a fix very quickly.

Why? It isn't Wayland and I'm guessing the abstractions here are cleaner.

If you want to report the bug that you are experiencing, I would report into the Gtk component: https://bugzilla.mozilla.org/enter_bug.cgi?product=Core&component=Widget%3A%20Gtk

[–] hozl 1 points 1 year ago (1 children)

Afaik Firefox has nothing to do with your compose key input. Are you sure this is happening only in Firefox? Of so an explanation might be that you have a font rendering issue, and the symbol the compose key produces is different in your system font compared to the font Firefox uses? Can't really explain how you'd get different symbols in apps otherwise.

[–] [email protected] 1 points 1 year ago

gtk is handling compose in the case of firefox. The onus is on the application to implement compose, which here firefox does through gtk. It is working correctly in modt programs but not in gtk ones, they have the same issues. It is also most definitely unrelated to the font, the behavior doesn't match either, not just the looks.

As described in the other comments, I have managed to add the missing compose sequences by prepending the regular compose default file to the userdefined .XCompose and putting that into the gtk specific compose file .config/gtk-{2,3,4}.0/Compose

You got different compose sequences otherwise because gtk has weird ones baked in and refuses to read the correct ones from the proper files

load more comments
view more: next ›