Run macros using strings?

Is there a way to do this on the keyboard? I know there’s programs for it but my hope is to use the keyboard so the macros go with me wherever I go.

The idea is something like turn on a listener layer

Type in the macro name I’ve assigned to a macro

If the string matches a macro name, it runs

If not nothing happens.

Basically an alternative to remembering alotta key combos.

Look into the ifGesture and exec macro commands according to firmware/doc-dev/reference-manual.md at master · UltimateHackingKeyboard/firmware · GitHub and firmware/doc-dev/user-guide.md at master · UltimateHackingKeyboard/firmware · GitHub .

Thanks for the reply. I tried the example

ifShortcut 88 final tapKey C-x
ifShortcut 89 final tapKey C-c
ifShortcut 90 final tapKey C-v
holdKey z

But not sure what to do with it? I placed it within the $onInit macro, but when I press z+x or z+c or z+v , I don’t get anything when highlighting a word

Place it into a new macro and map that macro on the z key.

Incredible. Thankyou for recommending. Exactly what I was looking for!