[Keymap] Drashna keymap updates for 0.18.0 (#18184)
Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
		
							parent
							
								
									d4a6ee1cad
								
							
						
					
					
						commit
						fa08cb2478
					
				
					 32 changed files with 720 additions and 301 deletions
				
			
		| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
#include "autocorrect_data.h"
 | 
			
		||||
| 
						 | 
				
			
			@ -6,9 +6,6 @@
 | 
			
		|||
#ifdef AUTOCORRECTION_ENABLE
 | 
			
		||||
#    include "autocorrection/autocorrection.h"
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef __AVR__
 | 
			
		||||
#    include <avr/wdt.h>
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
uint16_t copy_paste_timer;
 | 
			
		||||
bool     host_driver_disabled = false;
 | 
			
		||||
| 
						 | 
				
			
			@ -49,7 +46,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | 
			
		|||
#endif
 | 
			
		||||
    // If console is enabled, it will print the matrix position and status of each key pressed
 | 
			
		||||
#ifdef KEYLOGGER_ENABLE
 | 
			
		||||
    uprintf("KL: kc: 0x%04X, col: %2u, row: %2u, pressed: %b, time: %5u, int: %b, count: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time, record->tap.interrupted, record->tap.count);
 | 
			
		||||
    uprintf("KL: kc: 0x%04X, col: %2u, row: %2u, pressed: %1d, time: %5u, int: %1d, count: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time, record->tap.interrupted, record->tap.count);
 | 
			
		||||
#endif // KEYLOGGER_ENABLE
 | 
			
		||||
#if defined(OLED_ENABLE) && defined(CUSTOM_OLED_DRIVER)
 | 
			
		||||
    process_record_user_oled(keycode, record);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,6 +3,7 @@
 | 
			
		|||
 | 
			
		||||
#include "drashna.h"
 | 
			
		||||
 | 
			
		||||
#ifdef TAPPING_TERM_PER_KEY
 | 
			
		||||
__attribute__((weak)) uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    switch (keycode) {
 | 
			
		||||
        case BK_LWER:
 | 
			
		||||
| 
						 | 
				
			
			@ -11,7 +12,9 @@ __attribute__((weak)) uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *r
 | 
			
		|||
            return TAPPING_TERM;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif // TAPPING_TERM_PER_KEY
 | 
			
		||||
 | 
			
		||||
#ifdef PERMISSIVE_HOLD_PER_KEY
 | 
			
		||||
__attribute__((weak)) bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    // Immediately select the hold action when another key is tapped:
 | 
			
		||||
    // return true;
 | 
			
		||||
| 
						 | 
				
			
			@ -22,7 +25,9 @@ __attribute__((weak)) bool get_permissive_hold(uint16_t keycode, keyrecord_t *re
 | 
			
		|||
            return false;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif // PERMISSIVE_HOLD_PER_KEY
 | 
			
		||||
 | 
			
		||||
#ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY
 | 
			
		||||
__attribute__((weak)) bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    // Immediately select the hold action when another key is pressed.
 | 
			
		||||
    // return true;
 | 
			
		||||
| 
						 | 
				
			
			@ -32,10 +37,12 @@ __attribute__((weak)) bool get_hold_on_other_key_press(uint16_t keycode, keyreco
 | 
			
		|||
//        case QK_LAYER_TAP ... QK_LAYER_TAP_MAX:
 | 
			
		||||
//            return true;
 | 
			
		||||
        default:
 | 
			
		||||
            return true;
 | 
			
		||||
            return false;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif // HOLD_ON_OTHER_KEY_PRESS_PER_KEY
 | 
			
		||||
 | 
			
		||||
#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY
 | 
			
		||||
__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    // Do not force the mod-tap key press to be handled as a modifier
 | 
			
		||||
    // if any other key was pressed while the mod-tap key is held down.
 | 
			
		||||
| 
						 | 
				
			
			@ -48,17 +55,22 @@ __attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrec
 | 
			
		|||
            return true;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif // IGNORE_MOD_TAP_INTERRUPT_PER_KEY
 | 
			
		||||
 | 
			
		||||
#ifdef TAPPING_FORCE_HOLD_PER_KEY
 | 
			
		||||
__attribute__((weak)) bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    switch (keycode) {
 | 
			
		||||
        default:
 | 
			
		||||
            return false;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif // TAPPING_FORCE_HOLD_PER_KEY
 | 
			
		||||
 | 
			
		||||
#ifdef RETRO_TAPPING_PER_KEY
 | 
			
		||||
__attribute__((weak)) bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    switch (keycode) {
 | 
			
		||||
        default:
 | 
			
		||||
            return false;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif // RETRO_TAPPING_PER_KEY
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -142,7 +142,7 @@ DEFINE_UNICODE_LUT_TRANSLATOR(unicode_lut_translator_super,
 | 
			
		|||
                              0x2071, // i
 | 
			
		||||
                              0x02B2, // j
 | 
			
		||||
                              0x1D4F, // k
 | 
			
		||||
                              0x1D4F, // l
 | 
			
		||||
                              0x02E1, // l
 | 
			
		||||
                              0x1D50, // m
 | 
			
		||||
                              0x207F, // n
 | 
			
		||||
                              0x1D52, // o
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue