mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 21:32:31 +01:00 
			
		
		
		
	[Docs] Update Super ALT↯TAB to remove use of unregister_code16 (#5766)
The code as originally listed didn't work for me, but replacing `unregister_code16(LALT(KC_TAB));` with `unregister_code(KC_LALT);` fixes the problem and causes the macro to work as intended. Thanks to folks on Discord for helping me figure this out.
This commit is contained in:
		
							parent
							
								
									e73587cfd0
								
							
						
					
					
						commit
						9d97e47df4
					
				| @ -230,7 +230,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||||||
| void matrix_scan_user(void) {     # The very important timer.  | void matrix_scan_user(void) {     # The very important timer.  | ||||||
|   if (is_alt_tab_active) { |   if (is_alt_tab_active) { | ||||||
|     if (timer_elapsed(alt_tab_timer) > 1000) { |     if (timer_elapsed(alt_tab_timer) > 1000) { | ||||||
|       unregister_code16(LALT(KC_TAB)); |       unregister_code(KC_LALT); | ||||||
|       is_alt_tab_active = false; |       is_alt_tab_active = false; | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jez Cope
						Jez Cope