* Add kbd6x:konstantin keymap * Prevent tap dance from sending LShift as a weak mod in KBD6X * Move config.h and rules.mk definitions into userspace * Add UC_WIN to UNICODE_SELECTED_MODES * Temporarily use Bootmagic until Command is fixed * Move common behavior from keyboards into userspace * Update kbd6x:konstantin keymap and userspace * Make a RCTRL layer in kbd6x:konstantin * Make KC_ESC turn off layers * KC_ESC turns L_FN off only if it was locked on * Add missing record->event.pressed checks * Move numpad toggling logic into function * Disable Bootmagic, enable KEYBOARD_SHARED_EP with Command
		
			
				
	
	
		
			51 lines
		
	
	
		
			868 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			868 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "quantum.h"
 | 
						|
#ifdef TAP_DANCE_ENABLE
 | 
						|
  #include "tap_dance.h"
 | 
						|
#endif
 | 
						|
#ifdef UNICODE_ENABLE
 | 
						|
  #include "unicode.h"
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef LAYER_FN
 | 
						|
  #define FN      MO(L_FN)
 | 
						|
  #define FN_CAPS LT(L_FN, KC_CAPS)
 | 
						|
  #define FN_FNLK TT(L_FN)
 | 
						|
#endif
 | 
						|
 | 
						|
#define MV_UP   LCTL(KC_UP)
 | 
						|
#define MV_DOWN LCTL(KC_DOWN)
 | 
						|
#define MV_LEFT LCTL(KC_LEFT)
 | 
						|
#define MV_RGHT LCTL(KC_RGHT)
 | 
						|
#define TOP     LCTL(KC_HOME)
 | 
						|
#define BOTTOM  LCTL(KC_END)
 | 
						|
#define PRV_TAB LCTL(KC_PGUP)
 | 
						|
#define NXT_TAB LCTL(KC_PGDN)
 | 
						|
 | 
						|
#define LCT_CPS LCTL_T(KC_CAPS)
 | 
						|
 | 
						|
enum keycodes_user {
 | 
						|
  CLEAR = SAFE_RANGE,
 | 
						|
#ifdef LAYER_NUMPAD
 | 
						|
  NUMPAD,
 | 
						|
#endif
 | 
						|
 | 
						|
  RANGE_KEYMAP,
 | 
						|
};
 | 
						|
 | 
						|
enum layers_user {
 | 
						|
  L_BASE,
 | 
						|
#ifdef LAYER_FN
 | 
						|
  L_FN,
 | 
						|
#endif
 | 
						|
#ifdef LAYER_NUMPAD
 | 
						|
  L_NUMPAD,
 | 
						|
#endif
 | 
						|
 | 
						|
  L_RANGE_KEYMAP,
 | 
						|
};
 | 
						|
 | 
						|
bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
 | 
						|
uint32_t layer_state_set_keymap(uint32_t state);
 |