lasse
(lasse)
November 13, 2017, 8:10pm
2
Just found this thread. That seems to hold the solution to my infinite ø problem
I’ll just try that out. But I’d still like to feedback on the generic latin1 macro.
Here’s a fun story of how I “bricked” my keyboardio.
I did some experimenting with the Unicode plugin today.
The README says that starting from this example is the recommended way of getting started:
While that example does show how to wire the plugin up and use its core feature, Unicode.type(), it does not show how to run Unicode.type() when pressing a key.
I did it with a macro. Naively I added this to *macroAction():
case MACRO_ODOTS_LOWER:
Unicode.type(0x00f6);
break;
What I didn…