How to add blockly libraries

That’s actually interesting. I didn’t know that myself. I can confirm that it works on block libraries page.

Downside: It really seems to work on Windows only (I tried a few combinations on MacOS but none of them work - Ctrl on Macos works like the right mouse button afaik)

@JustinG I investigated that a bit. It seems there is an issue on MacOs with Ctrl.

It is actually in page-list.vue

@click.ctrl=“(e) => ctrlClick(e, page)”

I could easily add

@click.meta=“(e) => ctrlClick(e, page)”

which would allow the same on MacOS (I tried it and it works).

Do you think it would makes sense? I would then open an issue and provide a PR for it.

1 Like

That’s not surprising (it works on linux too, of course).

Here’s an example from the items list code:

The vue event modifier .ctrl probably doesn’t apply to the mac cmd, so you’d have to figure out what does and specifically add that additional event to all the list pages.

hehe, it seems we were it investigating it at the same time :smiley:

I will open an issue then during the next week and fix that. Thanks, Justin

Fixed:

2 Likes