* initial commit * Update layout. Tweak rules.mk * initial userspace configuration for kuchosauronad0 * modified userspace for kuchosauronad0 * added OSL_UNI * clean up * clean up * style * style * added more unicode * fixed representation * fixed representation * added comments * added comments, restructure * accidently one line * restructure * restructure * added git_lazy(void) * fixed indenting and added missing symbols * fixed indent * fixed indent * update * change tapping_term to 150 * added UNICODEMAP_ENABLE block * replace register with tap_code where possible * formatting * rearrange sequences * clean up * clean up * added unicode layer * disabled tap dance * add files for encoder * removed unnecessary include * removed unnecessary stuff
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						||
 | 
						||
#include "quantum.h"
 | 
						||
 | 
						||
void send_unicode_hex_string(const char* str);
 | 
						||
 | 
						||
/* use X(n) to call the  */
 | 
						||
#ifdef UNICODEMAP_ENABLE
 | 
						||
enum unicode_name {
 | 
						||
OKOK,     // 
 | 
						||
BANG,     // ‽
 | 
						||
IRONY,    // ⸮
 | 
						||
DEGREE,   // °
 | 
						||
THINK,    // 🤔 
 | 
						||
GRIN,     // <20>
 | 
						||
MONOCL,   // 🧐
 | 
						||
DRUG0,    // 🤪
 | 
						||
DRUG1,    // 🥴 
 | 
						||
CLOWN,    // 🤡
 | 
						||
MNDBLWN,  // 🤯
 | 
						||
MONEY,    // 🤑
 | 
						||
SHTUP,    // 🤐
 | 
						||
PARTY,    // 🥳
 | 
						||
SMRK,     // 😏
 | 
						||
WEARY,    // 😩
 | 
						||
UNAMU,    // 😒
 | 
						||
SPY,      // 🕵
 | 
						||
DAFUQ,    // 👺
 | 
						||
FIST0,    // 🤛
 | 
						||
FIST1,    // 🤜
 | 
						||
FIST2,    // ✊
 | 
						||
FIST3,    // 👊
 | 
						||
WIFIHAND, // 👌
 | 
						||
EFFU,     // 🖕
 | 
						||
SPOCK,    // 🖖
 | 
						||
INUP,     // 👆
 | 
						||
THDN,     // 👎
 | 
						||
THUP,     // 👍
 | 
						||
TUMBLER,  // 🥃
 | 
						||
DRAGON0,  // 🐉
 | 
						||
DRAGON1,  // 🐅
 | 
						||
TIGER0,   // 🐅
 | 
						||
TIGER1,   // 🐯
 | 
						||
COOL,     // 🆒
 | 
						||
UCHART,   // 📈
 | 
						||
DCHART,   // 📉
 | 
						||
BCHART,   // 📊
 | 
						||
NOPRCY,   // 🕲
 | 
						||
PRCY,     // 🕱
 | 
						||
BBB,      // 🅱
 | 
						||
POO,      // 💩
 | 
						||
HUNDR,    // 💯
 | 
						||
EGGPL,    // 🍆
 | 
						||
WATER,    // 💦
 | 
						||
LIT,      // 🔥
 | 
						||
SNEK,     // 🐍
 | 
						||
PENGUIN,  // 🐧
 | 
						||
BOAR,     // 🐗
 | 
						||
MONKEY,   // 🐒
 | 
						||
CHICK,    // 🐥
 | 
						||
DASH,     // 💨
 | 
						||
DIZZY,    // 💫
 | 
						||
KEEB,     // 🖮
 | 
						||
HOLE,     // 🕳
 | 
						||
SAUCER    // 🛸
 | 
						||
};
 | 
						||
#endif
 |