forked from mirrors/qmk_userspace
		
	A shot at aliasing
This commit is contained in:
		
					parent
					
						
							
								8459bb97c1
							
						
					
				
			
			
				commit
				
					
						3717cf5864
					
				
			
		
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
					@ -160,6 +160,7 @@ enum quantum_keycodes {
 | 
				
			||||||
#define LCAG(kc) (kc | QK_LCTL | QK_LALT | QK_LGUI)
 | 
					#define LCAG(kc) (kc | QK_LCTL | QK_LALT | QK_LGUI)
 | 
				
			||||||
#define ALTG(kc) (kc | QK_RCTL | QK_RALT)
 | 
					#define ALTG(kc) (kc | QK_RCTL | QK_RALT)
 | 
				
			||||||
#define SCMD(kc) (kc | QK_LGUI | QK_LSFT)
 | 
					#define SCMD(kc) (kc | QK_LGUI | QK_LSFT)
 | 
				
			||||||
 | 
					#define SWIN SCMD
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MOD_HYPR 0xf
 | 
					#define MOD_HYPR 0xf
 | 
				
			||||||
#define MOD_MEH 0x7
 | 
					#define MOD_MEH 0x7
 | 
				
			||||||
| 
						 | 
					@ -295,6 +296,7 @@ enum quantum_keycodes {
 | 
				
			||||||
#define LCAG_T(kc) MT((MOD_LCTL | MOD_LALT | MOD_LGUI), kc) // Left control alt and gui
 | 
					#define LCAG_T(kc) MT((MOD_LCTL | MOD_LALT | MOD_LGUI), kc) // Left control alt and gui
 | 
				
			||||||
#define ALL_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT | MOD_LGUI), kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/
 | 
					#define ALL_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT | MOD_LGUI), kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/
 | 
				
			||||||
#define SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc)
 | 
					#define SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc)
 | 
				
			||||||
 | 
					#define SWIN_T SCMD_T
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap
 | 
					// Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap
 | 
				
			||||||
#define KC_HYPR HYPR(KC_NO)
 | 
					#define KC_HYPR HYPR(KC_NO)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue