diff options
| author | rupa <rupa@lrrr.us> | 2020-08-20 20:07:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-20 17:07:09 -0700 |
| commit | dd763f2988f0804fc7a0ff03de5c2a1e5a29e450 (patch) | |
| tree | 3cf79015d574a866ca0dcca86c15c79cd5abca80 /users/rupa/unicode.h | |
| parent | 83c7c66e8caab77bfb97c937c371ceb165c58102 (diff) | |
| download | qmk_firmware-dd763f2988f0804fc7a0ff03de5c2a1e5a29e450.tar.gz qmk_firmware-dd763f2988f0804fc7a0ff03de5c2a1e5a29e450.zip | |
[Keymap] userspace and keymap for rupa (#9786)
* first iteration of my keymap
* * move to userspace
* "script" modes
* keymap bling
* OM and RUPA keys
and tryin to micro-optimize in process_records.c
* woops
swap shifted rupas
forgot to add codepoint for OM
* Apply suggestions from code review
Co-authored-by: Drashna Jaelre <drashna@live.com>
* add call to process_record_keymap, per review
* fall through to process_record_keymap
* license headers
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'users/rupa/unicode.h')
| -rwxr-xr-x | users/rupa/unicode.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/users/rupa/unicode.h b/users/rupa/unicode.h new file mode 100755 index 000000000..0c067bd91 --- /dev/null +++ b/users/rupa/unicode.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 rupa <rupa@lrrr.us> @rupa | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | #include "rupa.h" | ||
| 20 | |||
| 21 | #if defined(UNICODEMAP_ENABLE) | ||
| 22 | enum unicode_names { | ||
| 23 | CHEK, | ||
| 24 | /* | ||
| 25 | DI1, // ⚀ | ||
| 26 | DI2, // ⚁ | ||
| 27 | DI3, // ⚂ | ||
| 28 | DI4, // ⚃ | ||
| 29 | DI5, // ⚄ | ||
| 30 | DI6, // ⚅ | ||
| 31 | */ | ||
| 32 | HAS, // ☭ | ||
| 33 | IBNG, // ‽ | ||
| 34 | IRNY, // ⸮ | ||
| 35 | M4, // ♩ | ||
| 36 | M8, // ♪ | ||
| 37 | M8B, // ♫ | ||
| 38 | M16, // ♬ | ||
| 39 | OM, // ॐ | ||
| 40 | STB, // ★ | ||
| 41 | STW, // ☆ | ||
| 42 | }; | ||
| 43 | #endif | ||
