NuxtN
Nuxt16mo ago
Victor Hugo

NuxtUI Shortcut not working

Hi there friends, I'm trying to use defineShortcuts composable from NuxtUI, but it's not working when i try to use 3 combinations like: shift+meta+p, just works with: meta+p or shift+p.

defineShortcuts({
  shift_p: {
    handler: async () => {
      console.log("pressed shift+p");
    },
  },
  shift_meta_p: {
    handler: () => {
      console.log("pressed shift+meta+p");
    },
  },
});

Can anyone help me?
Was this page helpful?