forked from mirrors/qmk_userspace
		
	Adds SCMD and SCMD_T
This commit is contained in:
		
					parent
					
						
							
								176b93d08e
							
						
					
				
			
			
				commit
				
					
						8459bb97c1
					
				
			
		
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -159,6 +159,7 @@ enum quantum_keycodes {
 | 
			
		|||
#define MEH(kc)  (kc | QK_LCTL | QK_LSFT | QK_LALT)
 | 
			
		||||
#define LCAG(kc) (kc | QK_LCTL | QK_LALT | QK_LGUI)
 | 
			
		||||
#define ALTG(kc) (kc | QK_RCTL | QK_RALT)
 | 
			
		||||
#define SCMD(kc) (kc | QK_LGUI | QK_LSFT)
 | 
			
		||||
 | 
			
		||||
#define MOD_HYPR 0xf
 | 
			
		||||
#define MOD_MEH 0x7
 | 
			
		||||
| 
						 | 
				
			
			@ -293,6 +294,7 @@ enum quantum_keycodes {
 | 
			
		|||
#define MEH_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT), kc) // Meh is a less hyper version of the Hyper key -- doesn't include Win or Cmd, so just alt+shift+ctrl
 | 
			
		||||
#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 SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc)
 | 
			
		||||
 | 
			
		||||
// 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)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue