NuxtN
Nuxt11mo ago
StefanH

defineShortcut(): meta key doesn't work on linux?

Hey I'm running an arch linux system with kde plasma and firefox. Shortcuts with
meta_
don't work for me at all. Now I understand linux is always iffy but this does seem like a bug to me right now. Want to ask if others have the same issue on other distros before i open an issue

my code:

onMounted(() => {
  defineShortcuts({
    meta_k: (e) => {
      console.log("Shortcut pressed", e);
    }
  }
}


any other letters don't work either. When i change it to ctrl it works
Was this page helpful?