mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	fix instructions for oneshot layer handling on key release (#7554)
* fix instructions for oneshot layer handling on key release * use ONESHOT_OTHER_KEY_PRESSED instead of ONESHOT_PRESSED Co-Authored-By: Drashna Jaelre <drashna@live.com>
This commit is contained in:
		
							parent
							
								
									730a736ef0
								
							
						
					
					
						commit
						e676278474
					
				@ -155,7 +155,7 @@ You can control the behavior of one shot keys by defining these in `config.h`:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Sometimes, you want to activate a one-shot key as part of a macro or tap dance routine.  
 | 
					Sometimes, you want to activate a one-shot key as part of a macro or tap dance routine.  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
For one shot layers, you need to call `set_oneshot_layer(LAYER, ONESHOT_START)` on key down, and `set_oneshot_layer(ONESHOT_PRESSED)` on key up. If you want to cancel the oneshot, call `reset_oneshot_layer()`.
 | 
					For one shot layers, you need to call `set_oneshot_layer(LAYER, ONESHOT_START)` on key down, and `clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED)` on key up. If you want to cancel the oneshot, call `reset_oneshot_layer()`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
For one shot mods, you need to call `set_oneshot_mods(MOD)` to set it, or `clear_oneshot_mods()` to cancel it.
 | 
					For one shot mods, you need to call `set_oneshot_mods(MOD)` to set it, or `clear_oneshot_mods()` to cancel it.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user