Rojetto / ReNeo

Neo-Tastaturlayouts für Windows
GNU General Public License v3.0
57 stars 11 forks source link

YouTube Shortcut doesn't work #100

Closed Licates closed 1 year ago

Licates commented 1 year ago

The increase/decrease velocity shortcut on YouTube ([SHIFT+,] and [SHIFT+.]) don't work when I have reneo.exe running.

Rojetto commented 1 year ago

That is because on Neo Shift+, is bound to the character and Shift+. to (see layouts.json lines 96 and 97). If you don't need those bindings, you can change them to make the shortcut work again.

To do that, replace lines 96 and 97 with this:

"33": [{"keysym": "comma", "char": ","},                                {"keysym": "comma", "vk": "VK_OEM_COMMA"},                              {"keysym": "quotedbl", "char": "\""},                       {"keysym": "KP_2", "vk": "VK_NUMPAD2", "label": "2"},           {"keysym": "U03F1", "char": "ϱ"},                                   {"keysym": "implies", "char": "⇒"}],
"34": [{"keysym": "period", "char": "."},                               {"keysym": "period", "vk": "VK_OEM_PERIOD"},                  {"keysym": "apostrophe", "char": "'"},                      {"keysym": "KP_3", "vk": "VK_NUMPAD3", "label": "3"},           {"keysym": "U03D1", "char": "ϑ"},                                   {"keysym": "U21A6", "char": "↦"}],

I haven't tested this, let me know if this fixes the issue.

Licates commented 1 year ago

Yes, that works. Thanks!