• gsv@programming.dev
    link
    fedilink
    English
    arrow-up
    12
    arrow-down
    2
    ·
    1 day ago

    Standard procedure, no? We used to map non-standard keys back in the days. I’d probably map it to Super and use it for my key combinations for my most used software.

    • passenger@sopuli.xyz
      link
      fedilink
      arrow-up
      19
      ·
      edit-2
      5 hours ago

      Until you realize that cannot be done. Since they completely fd up the f-ing p.o.s. key.

      In short, pressing the key you get several key down and key up events. Letting go of the copilot key will produce no events.

      You cannot in any sensible way map this to any modifier key. Unless you set some kind of timer, which will never produce the exact same result but something a bit like it.

      • rhpp@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        56 minutes ago

        What’s more confusing is that on my laptop pressing the copilot key only sends the key down events and releasing sends the corresponding key up events, which makes it actually usable as a modifier key without resorting to weird timers.

        • passenger@sopuli.xyz
          link
          fedilink
          arrow-up
          1
          ·
          39 minutes ago

          Good for you! From what I hear the implementation and seemingly also key combo can vary. I read an article about someone using timers so that’s all I can say about that. I’m staying away from anything with a copilot key so I don’t have any experience myself.

      • gsv@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        ·
        10 hours ago

        Does that mean the copilot key behaves like a key-combination? Sounds like it but maybe I’m misunderstanding.

        • passenger@sopuli.xyz
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          5 hours ago

          Yes, normal key is a key down event when pressed and key up event when released.

          Copilot key has different functionality AFAIK on different laptops / keyboards. It will fire several key down events followed by release events. When you let go it will not give any events.

          Shortly, yes it behaves like a key combo pressed and released in some order.

          Thus, there are several lengthy articles for workarounds.

          And it is not standard procedure, unfortunately.