* [refactor] updating ninjonas layout blocks and standardized LOWER & ADJUST * [feat] added new macro M_TERM to open MacOS terminal app * [feat] introducing mod-tap functionality on keymap * [fix] fixing oled turning on when it feels like it. thanks @drashna for helping * [feat] updating OLED to rotate logo 180 degrees * [feat] updating keymaps to reflect VSCode frequent habits * [refactor] converting crkbd modifier keys to layer blocks * [fix(#6903)] converting _delay_ms to wait_ms on launching terminal macro
		
			
				
	
	
		
			31 lines
		
	
	
		
			526 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			526 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
#include "ninjonas.h"
 | 
						|
 | 
						|
enum custom_keycodes {
 | 
						|
  // Layer Macros
 | 
						|
  QWERTY = SAFE_RANGE,
 | 
						|
  DVORAK,
 | 
						|
  COLEMAK,
 | 
						|
  // Custom Macros
 | 
						|
  M_PYNV,
 | 
						|
  M_SHFT,
 | 
						|
  M_MAKE,
 | 
						|
  M_MALL,
 | 
						|
  M_FLSH,
 | 
						|
  M_VRSN,
 | 
						|
  M_CODE,
 | 
						|
  M_TERM,
 | 
						|
  // Secret Macros
 | 
						|
  M_XXX1,
 | 
						|
  M_XXX2,
 | 
						|
  M_XXX3,
 | 
						|
  M_XXX4,
 | 
						|
  M_XXX5,
 | 
						|
};
 | 
						|
 | 
						|
bool process_record_secrets(uint16_t keycode, keyrecord_t *record);
 | 
						|
bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
 | 
						|
#ifdef OLED_DRIVER_ENABLE
 | 
						|
bool process_record_oled(uint16_t keycode, keyrecord_t *record);
 | 
						|
#endif
 |