qmk-firmware/quantum
Jack Humbert b732b79b49 adapts unicode to quantum.c (#333)
* Unicode

to have unicode input you need to:

- set your OS input method to UNICODE if needed
- enable unicode in your makefile
- copy the action_function from
keyboard/planck/keymaps/unicode/unicode.c to your keymap.c
set the target OS method in your keymap.c: void matrix_init_user() {
set_unicode_mode(UC_OSX); } you can then switch when you want with:
set_unicode_mode(UC_OSX); set_unicode_mode(UC_LNX);
set_unicode_mode(UC_WIN);
put some unicode codes in your keymap like so: UC(0x0061)
I did change the bit mask in quantum/keymap_common.c and .h
I’m afraid we will need uint32 to get a total support for all unicode
tables or relocate the handler as @mbarkhau did.

* rearranges keycode values, hooks-up unicode

* removes extra lalt ref

* adds unicode shortcuts and example
2016-05-18 23:47:16 -04:00
..
audio adds music and audio toggles (#337) 2016-05-18 23:14:00 -04:00
keymap_extras Added Swiss-German keymap. (#335) 2016-05-18 15:22:04 -04:00
template Leader key implementation (#326) 2016-05-15 00:27:32 -04:00
tools Referencing the hex file (#309) 2016-05-05 18:27:28 -04:00
analog.c quantum separated 2015-10-26 14:49:46 -04:00
analog.h quantum separated 2015-10-26 14:49:46 -04:00
config_common.h added ergodox 2015-10-26 16:32:37 -04:00
keymap_common.c adapts unicode to quantum.c (#333) 2016-05-18 23:47:16 -04:00
keymap_common.h adapts unicode to quantum.c (#333) 2016-05-18 23:47:16 -04:00
keymap_midi.c preonic update 2016-03-30 00:43:07 -04:00
keymap_midi.h Backlight Breathing for Planck and Atomic 2016-05-09 13:17:15 -04:00
led.c __attribute__ ((weak)) added to led_set 2016-04-17 06:51:39 -10:00
light_ws2812.c Integrate WS2812 code into quantum core 2016-01-24 17:05:47 -08:00
light_ws2812.h Integrate WS2812 code into quantum core 2016-01-24 17:05:47 -08:00
matrix.c Leader key implementation (#326) 2016-05-15 00:27:32 -04:00
quantum.c adapts unicode to quantum.c (#333) 2016-05-18 23:47:16 -04:00
quantum.h adapts unicode to quantum.c (#333) 2016-05-18 23:47:16 -04:00
quantum.mk adapts unicode to quantum.c (#333) 2016-05-18 23:47:16 -04:00
rgblight.c actually resolves conflicts in rgblight.c 2016-04-26 13:50:04 -04:00
rgblight.h Update functions used to write to EEPROM 2016-04-21 20:07:03 -07:00
unicode.h adapts unicode to quantum.c (#333) 2016-05-18 23:47:16 -04:00